diff options
Diffstat (limited to 'Swiften/EventLoop/EventLoop.cpp')
-rw-r--r-- | Swiften/EventLoop/EventLoop.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swiften/EventLoop/EventLoop.cpp b/Swiften/EventLoop/EventLoop.cpp index c6d42d8..69d8abe 100644 --- a/Swiften/EventLoop/EventLoop.cpp +++ b/Swiften/EventLoop/EventLoop.cpp @@ -21,6 +21,8 @@ EventLoop::~EventLoop() { } void EventLoop::handleEvent(const Event& event) { + //SWIFT_LOG(debug) << "Handling event " << event.id << std::endl; + if (handlingEvents_) { // We're being called recursively. Push in the list of events to // handle in the parent handleEvent() @@ -70,6 +72,7 @@ void EventLoop::postEvent(boost::function<void ()> callback, boost::shared_ptr<E nextEventID_++; events_.push_back(event); } + //SWIFT_LOG(debug) << "Posting event " << event.id << std::endl; post(event); } |