init_log_streams: check if log_filename is empty.

This commit is contained in:
Jun Zhang 2015-10-19 11:47:14 +08:00
parent 3b9f99e0d6
commit 066ef038ed
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ static void init_log_streams(const Settings &cmd_args)
conf_loglev = lev_name[lev_i];
}
if (conf_loglev.empty()) // No logging
if (log_filename.empty() || conf_loglev.empty()) // No logging
return;
LogLevel log_level = Logger::stringToLevel(conf_loglev);