- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for storageLogAlwaysIf (0.2 sec)
-
cmd/logging.go
logger.LogIf(ctx, "encryption", err, errKind...) } func storageLogIf(ctx context.Context, err error, errKind ...interface{}) { logger.LogIf(ctx, "storage", err, errKind...) } func storageLogAlwaysIf(ctx context.Context, err error, errKind ...interface{}) { logger.LogAlwaysIf(ctx, "storage", err, errKind...) } func storageLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 03 18:49:48 UTC 2024 - 7.1K bytes - Viewed (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) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:56:26 UTC 2024 - 34.5K bytes - Viewed (0)