aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-31 09:29:41 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commita230e0aa44409ea33085634764922ba617a15394 (patch)
tree3b22ca2460af048b28068fd3fda0df816c5b5d04
parent632925a47bb5a34a4795522c9b4a3f590cd88d7d (diff)
downloadComputeLibrary-a230e0aa44409ea33085634764922ba617a15394.tar.gz
COMPMID-415: Add ERROR to pretty printer
Change-Id: I5dd9a2dd5dc8d500188550c56a26b3fe3d8a4904 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/85878 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
-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)