Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for storageLogAlwaysIf (0.14 sec)

  1. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. 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)
    			}
    		}
    
    		// Offset checks a bit.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top