Skip to content

Commit b1f7541

Browse files
committed
🐛 Add space for error and warning
1 parent 253c12e commit b1f7541

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Plugin/Utilities/src/log.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ void Log::debugLog(const std::string text) {
102102
}
103103

104104
void Log::debugLogWarning(const std::string text) {
105-
_warningPrintFunction("Warning" + text, _logFile);
105+
_warningPrintFunction("Warning " + text, _logFile);
106106
// _logFile << "Warning : " << text << std::endl;
107107

108108
if (_logWarningVector.size() >= MAX_LOG_SIZE)
@@ -112,7 +112,7 @@ void Log::debugLogWarning(const std::string text) {
112112
}
113113

114114
void Log::debugLogError(const std::string text) {
115-
_errorPrintFunction("Error" + text, _logFile);
115+
_errorPrintFunction("Error " + text, _logFile);
116116
// _logFile << "Error : " << text << std::endl;
117117
if (_logErrorVector.size() >= MAX_LOG_SIZE)
118118
_logErrorVector.pop_back();

0 commit comments

Comments
 (0)