Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LogAlwaysIf (0.1 sec)

  1. cmd/logging.go

    		logger.LogIf(ctx, "peers", err, errKind...)
    	}
    }
    
    func peersLogAlwaysIf(ctx context.Context, err error, errKind ...any) {
    	if !errors.Is(err, grid.ErrDisconnected) {
    		logger.LogAlwaysIf(ctx, "peers", err, errKind...)
    	}
    }
    
    func peersLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
    	if !errors.Is(err, grid.ErrDisconnected) {
    		logger.LogOnceIf(ctx, "peers", err, id, 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