Skip to content

Commit 9439039

Browse files
committed
Enable error reports for multi-console error propagation.
1 parent 4582a45 commit 9439039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SerialPrograms/Source/CommonTools/MultiConsoleErrors.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ void MultiConsoleErrorState::report_unrecoverable_error(VideoStream& stream, std
1717
if (m_unrecoverable_error.compare_exchange_strong(expected, true)){
1818
m_message = msg;
1919
}
20-
OperationFailedException::fire(ErrorReport::NO_ERROR_REPORT, std::move(msg), stream);
20+
OperationFailedException::fire(ErrorReport::SEND_ERROR_REPORT, std::move(msg), stream);
2121
}
2222
void MultiConsoleErrorState::check_unrecoverable_error(Logger& logger){
2323
if (m_unrecoverable_error.load(std::memory_order_acquire)){

0 commit comments

Comments
 (0)