We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7ee8f2 commit 6c57f05Copy full SHA for 6c57f05
1 file changed
loopd/log.go
@@ -43,6 +43,11 @@ func tracef(format string, params ...any) {
43
log().Tracef(format, params...)
44
}
45
46
+// debugf logs a message with level DEBUG.
47
+func debugf(format string, params ...any) {
48
+ log().Debugf(format, params...)
49
+}
50
+
51
// infof logs a message with level INFO.
52
func infof(format string, params ...any) {
53
log().Infof(format, params...)
0 commit comments