Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for s3LogIf (0.09 sec)

  1. cmd/untar.go

    					wg.Done()
    					//nolint:staticcheck // SA6002 we are fine with the tiny alloc
    					poolBuf128k.Put(b)
    				}()
    				if err := putObject(&rc, fi, name); err != nil {
    					if o.ignoreErrs {
    						s3LogIf(ctx, err)
    						return
    					}
    					asyncErrMu.Lock()
    					if asyncErr == nil {
    						asyncErr = err
    					}
    					asyncErrMu.Unlock()
    				}
    			}(name, header.FileInfo(), b)
    			continue
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 22 00:33:43 UTC 2024
    - 6K bytes
    - Viewed (2)
  2. cmd/logging.go

    	logger.LogOnceIf(ctx, "etcd", err, id, errKind...)
    }
    
    func metricsLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "metrics", err, errKind...)
    }
    
    func s3LogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "s3", err, errKind...)
    }
    
    func sftpLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 03 18:49:48 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top