loopd: add missing debugf logging helper

This commit is contained in:
Boris Nagaev 2026-05-12 01:43:39 -05:00
parent c7ee8f27e9
commit 6c57f05d8a
No known key found for this signature in database

View file

@ -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...)