diff options
| author | Ho3ein <ho3ein.sanaei@gmail.com> | 2023-06-16 17:55:33 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-16 17:55:33 +0300 |
| commit | 5188d516e3a13e0cf4c04f8af653007983b16cb5 (patch) | |
| tree | 7b2ab0097680e00cf74eb8467dddf3598eda7ba1 /config | |
| parent | 97925eeebe30c2f70bad6b6c240728034638842f (diff) | |
new - loglevel (#612)
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/config.go b/config/config.go index e3fe1709..30f0ca81 100644 --- a/config/config.go +++ b/config/config.go @@ -16,10 +16,11 @@ var name string type LogLevel string const ( - Debug LogLevel = "debug" - Info LogLevel = "info" - Warn LogLevel = "warn" - Error LogLevel = "error" + Debug LogLevel = "debug" + Info LogLevel = "info" + Notice LogLevel = "notice" + Warn LogLevel = "warn" + Error LogLevel = "error" ) func GetVersion() string { |
