- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for storageLogAlwaysIf (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/logging.go
logger.LogOnceIf(ctx, "encryption", err, id, errKind...) } func storageLogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "storage", err, errKind...) } func storageLogAlwaysIf(ctx context.Context, err error, errKind ...any) { logger.LogAlwaysIf(ctx, "storage", err, errKind...) } func storageLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6.8K bytes - Click Count (0) -
cmd/xl-storage-disk-id-check.go
// We recently saw a success - no need to check. return true } goOffline := func(err error, spent time.Duration) { if p.health.status.CompareAndSwap(diskHealthOK, diskHealthFaulty) { storageLogAlwaysIf(ctx, fmt.Errorf("node(%s): taking drive %s offline: %v", globalLocalNodeName, p.storage.String(), err)) p.health.waiting.Add(1) go p.monitorDiskStatus(spent, fn) } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Apr 25 05:41:04 GMT 2025 - 34.5K bytes - Click Count (0)