aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/Event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/module/Event.cpp')
-rw-r--r--src/core/module/Event.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/module/Event.cpp b/src/core/module/Event.cpp
index 020f5c69..3c1314fe 100644
--- a/src/core/module/Event.cpp
+++ b/src/core/module/Event.cpp
@@ -80,8 +80,10 @@ class Event::Impl {
void ExecuteCallback(ListenerIdentifier listener_id,
const DataObjectPtr& data_object) {
+ SPDLOG_DEBUG("try to execute callback for event {} with listener {}",
+ event_identifier_, listener_id);
if (callback_) {
- SPDLOG_DEBUG("execute callback for event {} with listener {}",
+ SPDLOG_DEBUG("executing callback for event {} with listener {}",
event_identifier_, listener_id);
if (!QMetaObject::invokeMethod(
callback_thread_,