1
0
mirror of synced 2026-02-13 13:06:56 +00:00

fix: return supported values for flags when calling Values.Type()

Signed-off-by: Jesper Axelsen <jesperbaxelsen@gmail.com>
Signed-off-by: Matheus Pimenta <matheuscscp@gmail.com>
This commit is contained in:
Jesper Axelsen
2025-10-26 14:51:55 +01:00
committed by Matheus Pimenta
parent b33f173670
commit 28f5b553a2
9 changed files with 25 additions and 22 deletions

View File

@@ -46,9 +46,9 @@ func (l *LogLevel) Set(str string) error {
}
func (l *LogLevel) Type() string {
return "logLevel"
return strings.Join(supportedLogLevels, "|")
}
func (l *LogLevel) Description() string {
return fmt.Sprintf("log level, available options are: (%s)", strings.Join(supportedLogLevels, ", "))
return "log level"
}