diff options
author | saturneric <[email protected]> | 2024-07-30 18:42:12 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-30 18:42:12 +0000 |
commit | dbb4a21931cd10a3caed3c446af0fe06de9873b1 (patch) | |
tree | b3eb2e6fc3e67ea274472dfacfa3451848b43c80 /src/core/module/Event.cpp | |
parent | fix: solve known issues on build (diff) | |
download | GpgFrontend-dbb4a21931cd10a3caed3c446af0fe06de9873b1.tar.gz GpgFrontend-dbb4a21931cd10a3caed3c446af0fe06de9873b1.zip |
feat: simplify logging
Diffstat (limited to 'src/core/module/Event.cpp')
-rw-r--r-- | src/core/module/Event.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/module/Event.cpp b/src/core/module/Event.cpp index b6d31369..873e728d 100644 --- a/src/core/module/Event.cpp +++ b/src/core/module/Event.cpp @@ -86,9 +86,8 @@ class Event::Impl { listener_id, data_object]() { callback(event_identifier, listener_id, data_object); })) { - qCWarning(core) << "failed to invoke callback for event: " - << event_identifier_ - << " with listener:" << listener_id; + LOG_W() << "failed to invoke callback for event: " << event_identifier_ + << " with listener:" << listener_id; } } } |