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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index e1ce9db99..f96c7c222 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -207,7 +207,7 @@ public:
207 if (!filter.CheckMessage(log_class, log_level)) { 207 if (!filter.CheckMessage(log_class, log_level)) {
208 return; 208 return;
209 } 209 }
210 message_queue.Push( 210 message_queue.EmplaceWait(
211 CreateEntry(log_class, log_level, filename, line_num, function, std::move(message))); 211 CreateEntry(log_class, log_level, filename, line_num, function, std::move(message)));
212 } 212 }
213 213