tall-ram-83532
01/21/2024, 12:40 PMfreezing-airport-6809
freezing-airport-6809
tall-ram-83532
01/22/2024, 10:25 AMproud-answer-87162
01/22/2024, 2:33 PMHowever, my log file is filled with "info" level messagesi think 4 ==
Info
in the Go code:
const (
// PanicLevel level, highest level of severity. Logs and then calls panic with the
// message passed to Debug, Info, ...
PanicLevel Level = iota
// FatalLevel level. Logs and then calls `logger.Exit(1)`. It will exit even if the
// logging level is set to Panic.
FatalLevel
// ErrorLevel level. Logs. Used for errors that should definitely be noted.
// Commonly used for hooks to send errors to an error tracking service.
ErrorLevel
// WarnLevel level. Non-critical entries that deserve eyes.
WarnLevel
// InfoLevel level. General operational entries about what's going on inside the
// application.
InfoLevel
// DebugLevel level. Usually only enabled when debugging. Very verbose logging.
DebugLevel
// TraceLevel level. Designates finer-grained informational events than the Debug.
TraceLevel
)
tall-ram-83532
01/25/2024, 3:35 PMproud-answer-87162
01/25/2024, 3:36 PMtall-ram-83532
01/25/2024, 3:37 PM