fix: error typo
Some checks failed
Test / test (1.20, ubuntu-latest) (push) Failing after 1s
Test / test (1.21, ubuntu-latest) (push) Failing after 1s
Test / test (1.22, ubuntu-latest) (push) Failing after 1s
Test / test (1.23, ubuntu-latest) (push) Failing after 0s
Test / test (1.24, ubuntu-latest) (push) Failing after 1s
Trigger CMFA Update / trigger-CMFA-update (push) Failing after 1s
Test / test (1.20, macos-13) (push) Has been cancelled
Test / test (1.20, macos-latest) (push) Has been cancelled
Test / test (1.20, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (1.20, windows-latest) (push) Has been cancelled
Test / test (1.21, macos-13) (push) Has been cancelled
Test / test (1.21, macos-latest) (push) Has been cancelled
Test / test (1.21, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (1.21, windows-latest) (push) Has been cancelled
Test / test (1.22, macos-13) (push) Has been cancelled
Test / test (1.22, macos-latest) (push) Has been cancelled
Test / test (1.22, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (1.22, windows-latest) (push) Has been cancelled
Test / test (1.23, macos-13) (push) Has been cancelled
Test / test (1.23, macos-latest) (push) Has been cancelled
Test / test (1.23, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (1.23, windows-latest) (push) Has been cancelled
Test / test (1.24, macos-13) (push) Has been cancelled
Test / test (1.24, macos-latest) (push) Has been cancelled
Test / test (1.24, ubuntu-24.04-arm) (push) Has been cancelled
Test / test (1.24, windows-latest) (push) Has been cancelled

This commit is contained in:
wwqgtxx 2025-05-15 18:07:55 +08:00
parent 5cf0f18c29
commit bb8c47d83d

View File

@ -31,7 +31,7 @@ func (l *LogLevel) UnmarshalYAML(unmarshal func(any) error) error {
unmarshal(&tp) unmarshal(&tp)
level, exist := LogLevelMapping[strings.ToLower(tp)] level, exist := LogLevelMapping[strings.ToLower(tp)]
if !exist { if !exist {
return errors.New("invalid mode") return errors.New("invalid log-level")
} }
*l = level *l = level
return nil return nil
@ -43,7 +43,7 @@ func (l *LogLevel) UnmarshalJSON(data []byte) error {
json.Unmarshal(data, &tp) json.Unmarshal(data, &tp)
level, exist := LogLevelMapping[strings.ToLower(tp)] level, exist := LogLevelMapping[strings.ToLower(tp)]
if !exist { if !exist {
return errors.New("invalid mode") return errors.New("invalid log-level")
} }
*l = level *l = level
return nil return nil
@ -53,7 +53,7 @@ func (l *LogLevel) UnmarshalJSON(data []byte) error {
func (l *LogLevel) UnmarshalText(data []byte) error { func (l *LogLevel) UnmarshalText(data []byte) error {
level, exist := LogLevelMapping[strings.ToLower(string(data))] level, exist := LogLevelMapping[strings.ToLower(string(data))]
if !exist { if !exist {
return errors.New("invalid mode") return errors.New("invalid log-level")
} }
*l = level *l = level
return nil return nil