diff options
| author | Sanaei <ho3ein.sanaei@gmail.com> | 2025-09-21 19:05:26 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-21 19:05:26 +0300 |
| commit | 806ecbd7c59b178b54a0567ad1f21e3819c4cd09 (patch) | |
| tree | 6eb4c88d6b52da648b86c90c8fd0bbb94cd24703 /config | |
| parent | 37c17357fc45b9acec387f3097be5db074ce880d (diff) | |
| parent | ae79b43cdb1fdcec772e9c411bb81243cae1de0a (diff) | |
Merge pull request #3528 from MHSanaei/security
Security issue fixed
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.go b/config/config.go index c9a3e83c..17c9a77f 100644 --- a/config/config.go +++ b/config/config.go @@ -23,11 +23,11 @@ type LogLevel string // Logging level constants const ( - Debug LogLevel = "debug" - Info LogLevel = "info" - Notice LogLevel = "notice" - Warn LogLevel = "warn" - Error LogLevel = "error" + Debug LogLevel = "debug" + Info LogLevel = "info" + Notice LogLevel = "notice" + Warning LogLevel = "warning" + Error LogLevel = "error" ) // GetVersion returns the version string of the 3x-ui application. |
