summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/EventLoop.cpp')
-rw-r--r--Swiften/EventLoop/EventLoop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/EventLoop/EventLoop.cpp b/Swiften/EventLoop/EventLoop.cpp
index 31c93e9..1852f3f 100644
--- a/Swiften/EventLoop/EventLoop.cpp
+++ b/Swiften/EventLoop/EventLoop.cpp
@@ -22,10 +22,10 @@ inline void invokeCallback(const Event& event) {
22 event.callback(); 22 event.callback();
23 } 23 }
24 catch (const std::exception& e) { 24 catch (const std::exception& e) {
25 SWIFT_LOG(error) << "Uncaught exception in event loop: " << e.what() << std::endl; 25 SWIFT_LOG(error) << "Uncaught exception in event loop: " << e.what();
26 } 26 }
27 catch (...) { 27 catch (...) {
28 SWIFT_LOG(error) << "Uncaught non-exception in event loop" << std::endl; 28 SWIFT_LOG(error) << "Uncaught non-exception in event loop";
29 } 29 }
30} 30}
31 31