diff options
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index c83cc69dc..48578c20d 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -168,7 +168,7 @@ void Logger::dlog2(const std::string &str, if (mLogFile.is_open()) { - if (comment) + if (comment != nullptr) { mLogFile << timeStr.str(); mLogFile.fill('0'); @@ -188,7 +188,7 @@ void Logger::dlog2(const std::string &str, if (mLogToStandardOut) { - if (comment) + if (comment != nullptr) { std::cout << timeStr.str(); std::cout.fill('0'); |