From 6d2a043970553e24f84f1a74e6a7e3cf86b13573 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Tue, 23 Dec 2014 11:15:25 +0800 Subject: [PATCH] default logging level to debug --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1d63417..fd8fb82 100644 --- a/main.go +++ b/main.go @@ -50,7 +50,7 @@ func init() { confIP := flag.String("ip", "", "this will overwrite Wide.IP if specified") confPort := flag.String("port", "", "this will overwrite Wide.Port if specified") confServer := flag.String("server", "", "this will overwrite Wide.Server if specified") - confLogLevel := flag.String("log_level", "info", "this will overwrite Wide.LogLevel if specified") + confLogLevel := flag.String("log_level", "debug", "this will overwrite Wide.LogLevel if specified") confStaticServer := flag.String("static_server", "", "this will overwrite Wide.StaticServer if specified") confContext := flag.String("context", "", "this will overwrite Wide.Context if specified") confChannel := flag.String("channel", "", "this will overwrite Wide.Channel if specified")