summaryrefslogtreecommitdiff
path: root/src/libcamera/log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcamera/log.cpp')
-rw-r--r--src/libcamera/log.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcamera/log.cpp b/src/libcamera/log.cpp
index f4eb8c11..1dac4666 100644
--- a/src/libcamera/log.cpp
+++ b/src/libcamera/log.cpp
@@ -22,6 +22,7 @@
#include <libcamera/logging.h>
+#include "thread.h"
#include "utils.h"
/**
@@ -196,7 +197,8 @@ void LogOutput::write(const LogMessage &msg)
break;
case LoggingTargetStream:
case LoggingTargetFile:
- str = "[" + utils::time_point_to_string(msg.timestamp()) + "]"
+ str = "[" + utils::time_point_to_string(msg.timestamp()) + "] ["
+ + std::to_string(Thread::currentId()) + "]"
+ log_severity_name(msg.severity()) + " "
+ msg.category().name() + " " + msg.fileInfo() + " "
+ msg.msg();