clang-format

This commit is contained in:
gabime
2024-12-01 23:59:09 +02:00
parent 58dac85596
commit e62be8b43f
18 changed files with 69 additions and 85 deletions

View File

@@ -75,7 +75,9 @@ std::shared_ptr<logger> logger::clone(std::string logger_name) {
// private/protected methods
void logger::flush_() {
for (auto &sink : sinks_) {
try { sink->flush(); }
try {
sink->flush();
}
SPDLOG_LOGGER_CATCH(source_loc())
}
}