From 6c57f05d8aea54826eefc3d4cb7b3032012677bf Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Tue, 12 May 2026 01:43:39 -0500 Subject: [PATCH] loopd: add missing debugf logging helper --- loopd/log.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/loopd/log.go b/loopd/log.go index 6d102bc5..7d92c120 100644 --- a/loopd/log.go +++ b/loopd/log.go @@ -43,6 +43,11 @@ func tracef(format string, params ...any) { log().Tracef(format, params...) } +// debugf logs a message with level DEBUG. +func debugf(format string, params ...any) { + log().Debugf(format, params...) +} + // infof logs a message with level INFO. func infof(format string, params ...any) { log().Infof(format, params...)