Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for internalLogOnceIf (0.23 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 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "dns", err, errKind...)
    }
    
    func internalLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "internal", err, errKind...)
    }
    
    func internalLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "internal", err, id, errKind...)
    }
    
    func transitionLogIf(ctx context.Context, err error, 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)
Back to top