diff options
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/config.c b/src/or/config.c index 046a716ff..9afcc2a1e 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -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")) { |