From cb55b48893ac96119d26ea5a1e9a3a25be913e5f Mon Sep 17 00:00:00 2001 From: Piper Pentagram Date: Fri, 8 Nov 2024 17:07:55 -0800 Subject: [PATCH] Add logging.Debug() function --- internal/logging/logging.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/logging/logging.go b/internal/logging/logging.go index 4270f88..9f1d81d 100644 --- a/internal/logging/logging.go +++ b/internal/logging/logging.go @@ -35,6 +35,10 @@ func Init(appConfig *config.AppConfig) { } } +func Debug(msg string, args ...any) { + logger.Debug(msg, args...) +} + func Info(msg string, args ...any) { logger.Info(msg, args...) }