Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transitionLogIf (0.18 sec)

  1. cmd/bucket-lifecycle.go

    				}
    			case noncurrentVersionsTask:
    				deleteObjectVersions(es.ctx, es.objAPI, v.bucket, v.versions, v.events)
    			case jentry:
    				transitionLogIf(es.ctx, deleteObjectFromRemoteTier(es.ctx, v.ObjName, v.VersionID, v.TierName))
    			case freeVersionTask:
    				oi := v.ObjectInfo
    				traceFn := globalLifecycleSys.trace(oi)
    				if !oi.TransitionedObject.FreeVersion {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "internal", err, errKind...)
    }
    
    func internalLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
    	logger.LogOnceIf(ctx, "internal", err, id, errKind...)
    }
    
    func transitionLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "transition", err, errKind...)
    }
    
    func configLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "config", 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