review: if/else cleanup (2)
This commit is contained in:
parent
6fa208e157
commit
f60f7d3640
1 changed files with 31 additions and 31 deletions
10
common/log.h
10
common/log.h
|
@ -352,8 +352,8 @@ inline FILE *_log_handler1(bool change = false, LogTriState disable = LogTriStat
|
|||
// with fallback in case something went wrong
|
||||
return logfile ? logfile : stderr;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
// do the (re)initialization
|
||||
if (target != nullptr)
|
||||
{
|
||||
if (logfile != nullptr && logfile != stdout && logfile != stderr)
|
||||
|
@ -386,12 +386,12 @@ inline FILE *_log_handler1(bool change = false, LogTriState disable = LogTriStat
|
|||
|
||||
fprintf(stderr, "Failed to open logfile '%s' with error '%s'\n", filename.c_str(), std::strerror(errno));
|
||||
fflush(stderr);
|
||||
|
||||
// At this point we let the init flag be to true below, and let the target fallback to stderr
|
||||
// otherwise we would repeatedly fopen() which was already unsuccessful
|
||||
}
|
||||
|
||||
// At this point we set init flag to true, and let the target fallback to stderr
|
||||
// otherwise we would repeatedly fopen() which was already unsuccessful
|
||||
_initialized = true;
|
||||
}
|
||||
|
||||
return logfile ? logfile : stderr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue