summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index f1c9ed6c4..b3793106d 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -5,10 +5,8 @@
5#include <atomic> 5#include <atomic>
6#include <chrono> 6#include <chrono>
7#include <climits> 7#include <climits>
8#include <exception>
9#include <stop_token> 8#include <stop_token>
10#include <thread> 9#include <thread>
11#include <vector>
12 10
13#include <fmt/format.h> 11#include <fmt/format.h>
14 12
@@ -276,9 +274,9 @@ private:
276 ColorConsoleBackend color_console_backend{}; 274 ColorConsoleBackend color_console_backend{};
277 FileBackend file_backend; 275 FileBackend file_backend;
278 276
279 std::jthread backend_thread;
280 MPSCQueue<Entry, true> message_queue{}; 277 MPSCQueue<Entry, true> message_queue{};
281 std::chrono::steady_clock::time_point time_origin{std::chrono::steady_clock::now()}; 278 std::chrono::steady_clock::time_point time_origin{std::chrono::steady_clock::now()};
279 std::jthread backend_thread;
282}; 280};
283} // namespace 281} // namespace
284 282