Skip to content
Snippets Groups Projects
Commit 034110e7 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

bugfix: if no loglevel or logfile is specified, then we need to open

a default log to stdout.


svn:r1909
parent faf2fdb1
No related branches found
No related tags found
No related merge requests found
......@@ -774,6 +774,10 @@ void config_init_logs(or_options_t *options)
*/
struct config_line_t *opt = options->LogOptions;
/* Special case if nothing is specified. */
if(!opt)
add_single_log(NULL, NULL, options->RunAsDaemon);
/* Special case for if first option is LogLevel. */
if (opt && !strcasecmp(opt->key, "LogLevel")) {
if (opt->next && !strcasecmp(opt->next->key, "LogFile")) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment