make the first letter of prefix to be captial.

This commit is contained in:
Liu Ming
2016-06-08 13:35:05 +02:00
parent 51d3ba1b66
commit 1a273ff6e3

View File

@@ -49,25 +49,25 @@ namespace Log {
std::string prefix;
switch (messageType) {
case MessageType::Debug:
prefix = "debug";
prefix = "Debug";
break;
case MessageType::Note:
prefix = "note";
prefix = "Note";
break;
case MessageType::Info:
prefix = "info";
prefix = "Info";
break;
case MessageType::Warning:
prefix = "warning";
prefix = "Warning";
break;
case MessageType::Error:
prefix = "error";
prefix = "Error";
break;
case MessageType::Problem:
prefix = "problem";
prefix = "Problem";
break;
case MessageType::Bug:
prefix = "bug";
prefix = "Bug";
break;
default:
throw std::invalid_argument("Unhandled messagetype");
@@ -80,8 +80,8 @@ namespace Log {
std::string colorCodeMessage(int64_t messageType, const std::string& message) {
switch (messageType) {
case MessageType::Debug:
case MessageType::Info:
case MessageType::Note:
case MessageType::Info:
return message; // No color coding, not even the code for default color.
case MessageType::Warning:
return AnsiTerminalColors::blue_strong + message + AnsiTerminalColors::none;