From a6c94345906abe4743018a3f5e0e9c33373e39ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Tue, 14 Jun 2016 15:00:56 +0200 Subject: [PATCH] Fixed missing error message prefix. --- src/plasp/utils/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plasp/utils/Logger.cpp b/src/plasp/utils/Logger.cpp index 0a67ada..e39574b 100644 --- a/src/plasp/utils/Logger.cpp +++ b/src/plasp/utils/Logger.cpp @@ -67,7 +67,7 @@ void Logger::exception(const std::string &errorType, const std::string &message) if (isatty(STDERR_FILENO)) { std::cerr - << Format(Color::Red, FontWeight::Bold) << "error:" + << Format(Color::Red, FontWeight::Bold) << errorType << ":" << ResetFormat() << " " << Format(Color::White, FontWeight::Bold) << message << ResetFormat() << std::endl;