diff --git a/src/error.cpp b/src/error.cpp index 7be1ac2..55c73e0 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -9,7 +9,9 @@ void showError(std::string message, std::string titleMessage, bool fatal = true) boxer::show(message.c_str(), titleMessage.c_str(), boxer::Style::Error); #endif - std::cerr << "ERROR: " << message << std::endl; + std::cerr << "ERROR"; + if (fatal) std::cerr << "(fatal)"; + std::cerr << ": " << message << std::endl; if (fatal) { std::abort();