From 840e87745659fd1a26f54368e7e2aee27a08c4c1 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Sat, 28 May 2011 10:15:37 -0400 Subject: [PATCH] More debug for chris --- src/libtomahawk/infosystem/infosystem.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/infosystem/infosystem.cpp b/src/libtomahawk/infosystem/infosystem.cpp index f8657fece..7fb85274b 100644 --- a/src/libtomahawk/infosystem/infosystem.cpp +++ b/src/libtomahawk/infosystem/infosystem.cpp @@ -103,7 +103,8 @@ InfoSystem::~InfoSystem() qDebug() << Q_FUNC_INFO << " worker thread controller not finished"; TomahawkUtils::Sleep::msleep( 50 ); } - + + qDebug() << Q_FUNC_INFO << " worker thread controller finished, deleting worker"; delete m_infoSystemWorkerThreadController; m_infoSystemWorkerThreadController = 0; } @@ -131,12 +132,13 @@ InfoSystem::~InfoSystem() TomahawkUtils::Sleep::msleep( 50 ); } + qDebug() << Q_FUNC_INFO << " cache thread controller finished, deleting cache"; delete m_infoSystemCacheThreadController; m_infoSystemCacheThreadController = 0; } } - qDebug() << Q_FUNC_INFO << " done deleting cache"; + qDebug() << Q_FUNC_INFO << " done deleting cache, exiting"; }