diff --git a/src/util/log.cpp b/src/util/log.cpp index 91534a5ed..56a8084f4 100644 --- a/src/util/log.cpp +++ b/src/util/log.cpp @@ -2,10 +2,10 @@ #include "util/isatty.hpp" #include #include +#include #include #include #include -#include namespace osrm { @@ -75,8 +75,9 @@ void Log::Init() { const bool is_terminal = IsStdoutATTY(); - auto format = [is_terminal](const char* level, const char* color) { - return fmt::format("{}[{}] {} ", is_terminal ? color : "", level, std::chrono::system_clock::now()); + auto format = [is_terminal](const char *level, const char *color) { + return fmt::format( + "{}[{}] {} ", is_terminal ? color : "", level, std::chrono::system_clock::now()); }; switch (level)