File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ void Log::debugLog(const std::string text) {
102
102
}
103
103
104
104
void Log::debugLogWarning (const std::string text) {
105
- _warningPrintFunction (" Warning" + text, _logFile);
105
+ _warningPrintFunction (" Warning " + text, _logFile);
106
106
// _logFile << "Warning : " << text << std::endl;
107
107
108
108
if (_logWarningVector.size () >= MAX_LOG_SIZE)
@@ -112,7 +112,7 @@ void Log::debugLogWarning(const std::string text) {
112
112
}
113
113
114
114
void Log::debugLogError (const std::string text) {
115
- _errorPrintFunction (" Error" + text, _logFile);
115
+ _errorPrintFunction (" Error " + text, _logFile);
116
116
// _logFile << "Error : " << text << std::endl;
117
117
if (_logErrorVector.size () >= MAX_LOG_SIZE)
118
118
_logErrorVector.pop_back ();
You can’t perform that action at this time.
0 commit comments