summaryrefslogtreecommitdiff
path: root/info.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-12 16:36:44 -0500
committerJeff Carr <[email protected]>2024-10-12 16:36:44 -0500
commit91b0564fb0797649862131f6623edbabca9a35df (patch)
treee7ef26981960e416de1e36c6faccfe99dc92b7b5 /info.go
parent366bcac15c3db2240b04c000bc0892452cce1bce (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.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/info.go b/info.go
index ee98e56..f9b8194 100644
--- a/info.go
+++ b/info.go
@@ -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...)
}