DebugLogs are now being redirected to the correct files

This commit is contained in:
Felipe Zimmerle
2015-08-27 01:27:34 -03:00
parent 01542e28c3
commit 24b7d72666
14 changed files with 330 additions and 177 deletions

View File

@@ -28,9 +28,8 @@ CustomDebugLog *CustomDebugLog::new_instance() {
}
bool CustomDebugLog::write_log(int level, const std::string& message) {
void CustomDebugLog::write(int level, const std::string& message) {
m_log << "[" << level << "] " << message << std::endl;
return true;
}