Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for healingLogEvent (0.07 sec)

  1. cmd/background-newdisks-heal-ops.go

    		return errRetryHealing
    	}
    
    	if tracker.ItemsFailed > 0 {
    		healingLogEvent(ctx, "Healing of drive '%s' is incomplete, retried %d times (healed: %d, skipped: %d, failed: %d).", disk,
    			tracker.RetryAttempts, tracker.ItemsHealed, tracker.ItemsSkipped, tracker.ItemsFailed)
    	} else {
    		if tracker.RetryAttempts > 0 {
    			healingLogEvent(ctx, "Healing of drive '%s' is complete, retried %d times (healed: %d, skipped: %d).", disk,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "internal", err, errKind...)
    }
    
    func healingLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "healing", err, errKind...)
    }
    
    func healingLogEvent(ctx context.Context, msg string, args ...any) {
    	logger.Event(ctx, "healing", msg, args...)
    }
    
    func healingLogOnceIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "healing", err, errKind...)
    }
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top