Remove annoying logs

This commit is contained in:
Ben Sarmiento
2024-01-28 18:27:39 +01:00
parent 00e4f8013c
commit 0678af2bc2
6 changed files with 57 additions and 28 deletions

View File

@@ -93,6 +93,10 @@ func NewLogger(logPath string) *Logger {
return zLogger
}
func (l *Logger) Printf(format string, v ...interface{}) {
l.SugaredLogger.Infof(format, v...)
}
func (l *Logger) Named(name string) *Logger {
return &Logger{
SugaredLogger: l.SugaredLogger.Named(name),