From c62a237f8d7110c413b24fb4db10ec46039b924c Mon Sep 17 00:00:00 2001 From: ashishj1729 Date: Thu, 22 May 2025 15:05:58 +0530 Subject: [PATCH] Adding Debug Level in Logger Issue-id: AIMLFW-208 Change-Id: I29b07eaeac3eca0db6ac69a9a2d49e4d1af73756 Signed-off-by: ashishj1729 --- logging/logging.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/logging/logging.go b/logging/logging.go index cc9a1a8..c9e7e72 100644 --- a/logging/logging.go +++ b/logging/logging.go @@ -53,3 +53,8 @@ func WARN(msg string, logParams ...interface{}) { func ERROR(msg string, logParams ...interface{}) { Logger.Info(msg, logParams...) } + +// Prefixes DEBUG for each log message +func DEBUG(msg string, logParams ...any) { + Logger.Debug(msg, logParams...) +} -- 2.16.6