Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for internalLogOnceIf (0.05 sec)

  1. cmd/bucket-quota.go

    		if len(dui.BucketsUsage) > 0 {
    			internalLogOnceIf(GlobalContext, fmt.Errorf("unable to retrieve usage information for bucket: %s, relying on older value cached in-memory: err(%v)", bucket, err), "bucket-usage-cache-"+bucket)
    		} else {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Aug 06 23:48:58 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "dns", err, errKind...)
    }
    
    func internalLogIf(ctx context.Context, err error, errKind ...any) {
    	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) {
    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