From 5ed87306d93bc01e64c5ee26497bd2dad3d647db Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Wed, 29 Jul 2015 16:10:57 +0200 Subject: [PATCH] reduce log --- src/libsnore/notification/notification.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libsnore/notification/notification.cpp b/src/libsnore/notification/notification.cpp index 6d59343..d2c09c4 100644 --- a/src/libsnore/notification/notification.cpp +++ b/src/libsnore/notification/notification.cpp @@ -157,7 +157,6 @@ void Notification::addActiveIn(const QObject *o) } d->m_activeIn.insert(o); SnoreCorePrivate::instance()->m_activeNotifications[id()] = *this; - snoreDebug(SNORE_INFO) << d->m_activeIn.size() << o << qobject_cast(o); snoreDebug(SNORE_INFO) << SnoreCorePrivate::instance()->m_activeNotifications.size(); } @@ -169,7 +168,6 @@ bool Notification::isActiveIn(const QObject *o) const bool Notification::removeActiveIn(const QObject *o) { bool out = d->m_activeIn.remove(o); - snoreDebug(SNORE_INFO) << d->m_activeIn.size() << o << qobject_cast(o); if (d->m_activeIn.isEmpty()) { SnoreCorePrivate::instance()->m_activeNotifications.remove(id()); snoreDebug(SNORE_INFO) << SnoreCorePrivate::instance()->m_activeNotifications.size();