Added few debug statements to EventManager timer loop

This commit is contained in:
Ishan Arora 2008-09-15 05:27:56 +00:00
parent 28fdfdfef1
commit af2e487ef5
2 changed files with 9 additions and 7 deletions

View file

@ -76,16 +76,18 @@ void HttpServer::newHttpConnection()
void HttpServer::onTimer()
{
qDebug("EventManager Timer Start");
QStringList list = BTSession->getUnfinishedTorrents();
foreach(QString hash, list) {
QTorrentHandle h = BTSession->getTorrentHandle(hash);
if(h.is_valid()) manager->modifiedTorrent(h);
}
list = BTSession->getFinishedTorrents();
list = BTSession->getFinishedTorrents();
foreach(QString hash, list) {
QTorrentHandle h = BTSession->getTorrentHandle(hash);
if(h.is_valid()) manager->modifiedTorrent(h);
}
QTorrentHandle h = BTSession->getTorrentHandle(hash);
if(h.is_valid()) manager->modifiedTorrent(h);
}
qDebug("EventManager Timer Stop");
}
void HttpServer::setAuthorization(QString username, QString password)