aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clog/clog.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/clog/clog.go b/clog/clog.go
index 464c193..8401665 100644
--- a/clog/clog.go
+++ b/clog/clog.go
@@ -26,3 +26,7 @@ func Error(str string, keyvals ...any) {
func Debug(str string, keyvals ...any) {
log("DEBUG "+str, keyvals)
}
+
+func Info(str string, keyvals ...any) {
+ log("INFO "+str, keyvals)
+}