summaryrefslogtreecommitdiff
path: root/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'log.go')
-rw-r--r--log.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/log.go b/log.go
index 17247db..6a5151f 100644
--- a/log.go
+++ b/log.go
@@ -58,12 +58,12 @@ func Get(flag string) bool {
// a simple way turn logging messages on and off
func Log(b bool, a ...any) {
if ! b { return }
- golanglog.Println(a...)
+ origlog.Println(a...)
}
func Logf(b bool, s string, a ...any) {
if ! b { return }
- golanglog.Printf(s, a...)
+ origlog.Printf(s, a...)
}
func Println(a ...any) {