- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LogOnceConsoleIf (0.07 sec)
-
internal/logger/logonce.go
return } logOnce.logOnceIf(ctx, subsystem, err, id, errKind...) } // LogOnceConsoleIf - similar to LogOnceIf but exclusively only logs to console target. func LogOnceConsoleIf(ctx context.Context, subsystem string, err error, id string, errKind ...interface{}) { if logIgnoreError(err) { return } logOnce.logOnceConsoleIf(ctx, subsystem, err, id, errKind...)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 3.8K bytes - Viewed (0) -
cmd/logging.go
logger.LogOnceIf(ctx, "config", err, id, errKind...) } func configLogOnceConsoleIf(ctx context.Context, err error, id string, errKind ...interface{}) { logger.LogOnceConsoleIf(ctx, "config", err, id, errKind...) } func scannerLogIf(ctx context.Context, err error, errKind ...interface{}) { logger.LogIf(ctx, "scanner", err, errKind...) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 03 18:49:48 UTC 2024 - 7.1K bytes - Viewed (0)