summaryrefslogtreecommitdiff
path: root/src/common/Logging/Logger.cpp
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2021-06-25 00:50:18 +0700
committerGitHub <noreply@github.com>2021-06-24 19:50:18 +0200
commit3c24b511f2fb2b23618e9cd0b24d28cb5afa34ad (patch)
tree78baa1669874acf8b7adf1c1994e383e814a3146 /src/common/Logging/Logger.cpp
parent33c271cc7c191f72406873d81abd954525d093c0 (diff)
refactor(Core/Misc): add braces and impove codestyle (#6402)
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);
+ }
}