diff options
| author | Jeff Carr <[email protected]> | 2024-10-12 16:36:44 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-12 16:36:44 -0500 |
| commit | 91b0564fb0797649862131f6623edbabca9a35df (patch) | |
| tree | e7ef26981960e416de1e36c6faccfe99dc92b7b5 /info.go | |
| parent | 366bcac15c3db2240b04c000bc0892452cce1bce (diff) | |
run everything through the daemon check to switch to fmt
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'info.go')
| -rw-r--r-- | info.go | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -4,18 +4,14 @@ package log -import ( - golanglog "log" -) - func Info(a ...any) { if ! INFO.Ok() { return } if ! INFO.b { return } - golanglog.Println(a...) + realPrintln(a...) } func Infof(s string, a ...any) { if ! INFO.Ok() { return } if ! INFO.b { return } - golanglog.Printf(s, a...) + realPrintf(s, a...) } |
