Skip to content

Commit 0788c5f

Browse files
committed
fix(server): default loglevel via cli arg
1 parent 2d5d38d commit 0788c5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func main() {
2121
cli.ARG_DB_URL = flag.String("database_url", "", "Database connection string")
2222
cli.ARG_DB_TYPE = flag.String("database_type", "", "Database type, possible values are postgres,mysql,sqlite")
2323
cli.ARG_ENV_FILE = flag.String("env_file", "", "Env file path")
24-
cli.ARG_LOG_LEVEL = flag.String("log_level", "info", "Log level, possible values are debug,info,warn,error,fatal,panic")
24+
cli.ARG_LOG_LEVEL = flag.String("log_level", "", "Log level, possible values are debug,info,warn,error,fatal,panic")
2525
cli.ARG_REDIS_URL = flag.String("redis_url", "", "Redis connection string")
2626
flag.Parse()
2727

0 commit comments

Comments
 (0)