diff options
author | bunnei <bunneidev@gmail.com> | 2021-10-05 10:05:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-05 10:05:46 -0700 |
commit | 5b2fa8dd418d82b51acdc6849fafbc6a2e858fa9 (patch) | |
tree | 879f5fb79a0d320cb56a5e66eab783de9614d88a /src/common/logging/backend.cpp | |
parent | b8694399693c13e04c049b474354c8efef1874ee (diff) | |
parent | 579f4ea4bd34f310fc8e60a4c154981a86727686 (diff) |
Merge pull request #7115 from ameerj/log-compile
common/logging: Reduce dependent header include overhead
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r-- | src/common/logging/backend.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index e40d117d64..0e85a9c1de 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -9,6 +9,8 @@ #include <thread> #include <vector> +#include <fmt/format.h> + #ifdef _WIN32 #include <windows.h> // For OutputDebugStringW #endif @@ -22,6 +24,7 @@ #include "common/logging/backend.h" #include "common/logging/log.h" +#include "common/logging/log_entry.h" #include "common/logging/text_formatter.h" #include "common/settings.h" #ifdef _WIN32 |