small tweaks to the kernel code

This commit is contained in:
MitchellHansen
2017-09-23 14:03:33 -07:00
parent abb9621080
commit 836af27a3e
2 changed files with 8 additions and 52 deletions

View File

@@ -14,11 +14,11 @@ void Logger::log(std::string log_string, LogLevel severity, uint32_t line_number
switch (severity) {
case LogLevel::INFO: {
output << "[INFO] --> ";
output << "[INFO] --> ";
break;
}
case LogLevel::WARN: {
output << "[WARN] --> ";
output << "[WARN] --> ";
break;
}
case LogLevel::ERROR: {