mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd::log: Remove unconditional critical output from stdout (remains for stderr).
Removed due to mark() causing critical output.
This commit is contained in:
parent
1fb64a8924
commit
95cb4329fe
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ noexcept
|
|||
const bool copy_to_stdout
|
||||
{
|
||||
bool(conf.console_stdout)
|
||||
&& ((!console_quiet_stdout[lev] && log.cmasked) || lev == level::CRITICAL)
|
||||
&& (!console_quiet_stdout[lev] && log.cmasked)
|
||||
};
|
||||
|
||||
const bool copy_to_file
|
||||
|
|
Loading…
Reference in a new issue