comment out watchhandler debug information

This commit is contained in:
hjk
2008-12-19 15:02:09 +01:00
parent 210740c316
commit 02c23836dd

View File

@@ -1204,13 +1204,13 @@ void WatchHandler::loadWatchers()
QVariant value; QVariant value;
sessionValueRequested("Watchers", &value); sessionValueRequested("Watchers", &value);
m_watchers = value.toStringList(); m_watchers = value.toStringList();
qDebug() << "LOAD WATCHERS: " << m_watchers; //qDebug() << "LOAD WATCHERS: " << m_watchers;
reinitializeWatchersHelper(); reinitializeWatchersHelper();
} }
void WatchHandler::saveWatchers() void WatchHandler::saveWatchers()
{ {
qDebug() << "SAVE WATCHERS: " << m_watchers; //qDebug() << "SAVE WATCHERS: " << m_watchers;
setSessionValueRequested("Watchers", m_watchers); setSessionValueRequested("Watchers", m_watchers);
} }