Skip to content

Commit df80b1a

Browse files
zhangjunphyest31
authored andcommittedOct 19, 2015
init_log_streams: check if log_filename is empty.
Fixes #3262.
1 parent 3b9f99e commit df80b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ static void init_log_streams(const Settings &cmd_args)
540540
conf_loglev = lev_name[lev_i];
541541
}
542542

543-
if (conf_loglev.empty()) // No logging
543+
if (log_filename.empty() || conf_loglev.empty()) // No logging
544544
return;
545545

546546
LogLevel log_level = Logger::stringToLevel(conf_loglev);

0 commit comments

Comments
 (0)
Please sign in to comment.