ax(logging): add missing function name to GetLevel doc comment

Co-Authored-By: Charon <charon@lethean.io>
This commit is contained in:
Claude 2026-04-02 14:21:20 +01:00
parent d44cfa3790
commit 3b077dd00d
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -96,6 +96,7 @@ func (l *Logger) SetLevel(level Level) {
l.level = level
}
// GetLevel returns the current minimum log level.
// current := logger.GetLevel()
// if current == logging.LevelDebug { logger.SetLevel(logging.LevelInfo) }
func (l *Logger) GetLevel() Level {