This makes it so it implements other logger interfaces fully (#72)

This commit is contained in:
Itxaka 2024-03-01 11:53:08 +01:00 committed by GitHub
parent b3dfedfacb
commit 1c55cf24d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,6 +124,10 @@ func (m KairosLogger) Warning(args ...interface{}) {
m.Logger.Warn().Msg(fmt.Sprint(args...))
}
func (m KairosLogger) Warningf(tpl string, args ...interface{}) {
m.Logger.Warn().Msg(fmt.Sprintf(tpl, args...))
}
func (m KairosLogger) Debugf(tpl string, args ...interface{}) {
m.Logger.Debug().Msg(fmt.Sprintf(tpl, args...))
}