Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ilmLogIf (0.2 sec)

  1. cmd/logging.go

    	logger.LogIf(ctx, "scanner", err, errKind...)
    }
    
    func scannerLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "scanner", err, id, errKind...)
    }
    
    func ilmLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "ilm", err, errKind...)
    }
    
    func ilmLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 16 15:43:39 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    	}()
    
    	if err = expireTransitionedObject(ctx, objLayer, &obj, lcEvent, src); err != nil {
    		if isErrObjectNotFound(err) || isErrVersionNotFound(err) {
    			return false
    		}
    		ilmLogIf(ctx, err)
    		return false
    	}
    	// Notification already sent in *expireTransitionedObject*, just return 'true' here.
    	return true
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
Back to top