summaryrefslogtreecommitdiff
path: root/src/common/Logging/Logger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Logging/Logger.cpp')
-rw-r--r--src/common/Logging/Logger.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/Logging/Logger.cpp b/src/common/Logging/Logger.cpp
index c70431c5e7..d507415ab9 100644
--- a/src/common/Logging/Logger.cpp
+++ b/src/common/Logging/Logger.cpp
@@ -44,5 +44,7 @@ void Logger::write(LogMessage* message) const
for (std::pair<uint8 const, Appender*> const& appender : appenders)
if (appender.second)
+ {
appender.second->write(message);
+ }
}