summaryrefslogtreecommitdiff
path: root/warn.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-12-28 12:35:05 -0600
committerJeff Carr <[email protected]>2023-12-28 12:35:05 -0600
commit5766e86595bb7bc4c16c37f8ed47bcf0db25d82b (patch)
treeb3c588102c16c943db7235d6745865b974d30e55 /warn.go
initial commit
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'warn.go')
-rw-r--r--warn.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/warn.go b/warn.go
new file mode 100644
index 0000000..75d466c
--- /dev/null
+++ b/warn.go
@@ -0,0 +1,9 @@
+package log
+
+import (
+ origlog "log"
+)
+
+func Warn(a ...any) {
+ origlog.Println(a...)
+}