mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 16:34:13 +01:00
construct: Suppress log messages during command output sequence.
This commit is contained in:
parent
c372b45857
commit
da6a39812f
1 changed files with 5 additions and 0 deletions
|
@ -301,6 +301,11 @@ handle_line_bymodule(const string_view &line)
|
|||
case 0:
|
||||
case 1:
|
||||
{
|
||||
// For this scope we have to suppress again because there's some
|
||||
// yielding business going on below where log messages can break
|
||||
// into the command output.
|
||||
const log::console_quiet quiet{false};
|
||||
|
||||
const auto str
|
||||
{
|
||||
out.str()
|
||||
|
|
Loading…
Reference in a new issue