mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
loopd: add missing debugf logging helper
This commit is contained in:
parent
c7ee8f27e9
commit
6c57f05d8a
1 changed files with 5 additions and 0 deletions
|
|
@ -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...)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue