Merge pull request #573 from elezar/bugfix-in-log-argument

Fix bug in argument parsing for logger creation
This commit is contained in:
Evan Lezar 2024-07-01 12:12:14 +02:00 committed by GitHub
commit f55aac0232
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -238,7 +238,7 @@ func parseArgs(args []string) loggerConfig {
var value string
switch {
case len(parts) == 2:
value = parts[2]
value = parts[1]
case i+1 < len(args):
value = args[i+1]
i++