Skip to content

Commit 6c57f05

Browse files
committed
loopd: add missing debugf logging helper
1 parent c7ee8f2 commit 6c57f05

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

loopd/log.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ func tracef(format string, params ...any) {
4343
log().Tracef(format, params...)
4444
}
4545

46+
// debugf logs a message with level DEBUG.
47+
func debugf(format string, params ...any) {
48+
log().Debugf(format, params...)
49+
}
50+
4651
// infof logs a message with level INFO.
4752
func infof(format string, params ...any) {
4853
log().Infof(format, params...)

0 commit comments

Comments
 (0)