Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHo3ein <ho3ein.sanaei@gmail.com>2023-06-16 17:55:33 +0300
committerGitHub <noreply@github.com>2023-06-16 17:55:33 +0300
commit5188d516e3a13e0cf4c04f8af653007983b16cb5 (patch)
tree7b2ab0097680e00cf74eb8467dddf3598eda7ba1 /main.go
parent97925eeebe30c2f70bad6b6c240728034638842f (diff)
new - loglevel (#612)
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index ca711558..fdf54089 100644
--- a/main.go
+++ b/main.go
@@ -27,6 +27,8 @@ func runWebServer() {
logger.InitLogger(logging.DEBUG)
case config.Info:
logger.InitLogger(logging.INFO)
+ case config.Notice:
+ logger.InitLogger(logging.NOTICE)
case config.Warn:
logger.InitLogger(logging.WARNING)
case config.Error: