mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 10:12:15 +01:00
when add_file_log() fails, tell us why.
svn:r14277
This commit is contained in:
parent
77c6ca9af3
commit
39c402c29f
@ -3902,7 +3902,8 @@ options_init_logs(or_options_t *options, int validate_only)
|
||||
!strcasecmp(smartlist_get(elts,0), "file")) {
|
||||
if (!validate_only) {
|
||||
if (add_file_log(severity, smartlist_get(elts, 1)) < 0) {
|
||||
log_warn(LD_CONFIG, "Couldn't open file for 'Log %s'", opt->value);
|
||||
log_warn(LD_CONFIG, "Couldn't open file for 'Log %s': %s",
|
||||
opt->value, strerror(errno));
|
||||
ok = 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user