diff --git a/pkg/structuredlogger/structuredlogger.go b/pkg/structuredlogger/structuredlogger.go index 4efcdcf..c376be7 100644 --- a/pkg/structuredlogger/structuredlogger.go +++ b/pkg/structuredlogger/structuredlogger.go @@ -29,17 +29,17 @@ type Interface interface { Handlers() []handler.Interface AddHandler(handlerInterface handler.Interface) RemoveHandler(handlerInterface handler.Interface) - Trace(message string, parameters ...any) - Debug(message string, parameters ...any) - Verbose(message string, parameters ...any) - Info(message string, parameters ...any) - Notice(message string, parameters ...any) - Warning(message string, parameters ...any) - Severe(message string, parameters ...any) - Error(message string, parameters ...any) - Alert(message string, parameters ...any) - Critical(message string, parameters ...any) - Emergency(message string, parameters ...any) + Trace(parameters ...any) + Debug(parameters ...any) + Verbose(parameters ...any) + Info(parameters ...any) + Notice(parameters ...any) + Warning(parameters ...any) + Severe(parameters ...any) + Error(parameters ...any) + Alert(parameters ...any) + Critical(parameters ...any) + Emergency(parameters ...any) ErrorLevel() level.Level SetErrorLevel(newLevel level.Level) PanicLevel() level.Level