aboutsummaryrefslogtreecommitdiff
path: root/framework/printers/PrettyPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'framework/printers/PrettyPrinter.cpp')
-rw-r--r--framework/printers/PrettyPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/printers/PrettyPrinter.cpp b/framework/printers/PrettyPrinter.cpp
index 631d96917a..6f7174371a 100644
--- a/framework/printers/PrettyPrinter.cpp
+++ b/framework/printers/PrettyPrinter.cpp
@@ -98,7 +98,7 @@ void PrettyPrinter::print_errors_footer()
void PrettyPrinter::print_error(const std::exception &error)
{
- *_stream << begin_color("1") << error.what() << end_color() << "\n";
+ *_stream << begin_color("1") << "ERROR: " << error.what() << end_color() << "\n";
}
void PrettyPrinter::print_measurements(const Profiler::MeasurementsMap &measurements)