diff --git a/src/libtomahawk/database/fuzzyindex/FuzzyIndex.cpp b/src/libtomahawk/database/fuzzyindex/FuzzyIndex.cpp
index 63a547494..cd8c8584c 100644
--- a/src/libtomahawk/database/fuzzyindex/FuzzyIndex.cpp
+++ b/src/libtomahawk/database/fuzzyindex/FuzzyIndex.cpp
@@ -88,7 +88,7 @@ FuzzyIndex::~FuzzyIndex()
 bool
 FuzzyIndex::wipeIndex()
 {
-    tLog( LOGVERBOSE ) << "Wiping fuzzy index:" << m_lucenePath;
+    tDebug() << "Wiping fuzzy index:" << m_lucenePath;
     beginIndexing();
     endIndexing();
 
@@ -112,10 +112,10 @@ FuzzyIndex::beginIndexing()
 
     try
     {
-        tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Starting indexing:" << m_lucenePath;
+        tDebug() << Q_FUNC_INFO << "Starting indexing:" << m_lucenePath;
         if ( m_luceneReader != 0 )
         {
-            tDebug( LOGVERBOSE ) << "Deleting old lucene stuff.";
+            tDebug() << "Deleting old lucene stuff.";
 
             m_luceneSearcher->close();
             m_luceneReader->close();
@@ -125,7 +125,7 @@ FuzzyIndex::beginIndexing()
             m_luceneReader = 0;
         }
 
-        tDebug( LOGVERBOSE ) << "Creating new index writer.";
+        tDebug() << "Creating new index writer.";
         m_luceneWriter = new IndexWriter( m_luceneDir, m_analyzer, true );
     }
     catch( CLuceneError& error )
@@ -139,7 +139,7 @@ FuzzyIndex::beginIndexing()
 void
 FuzzyIndex::endIndexing()
 {
-    tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Finishing indexing:" << m_lucenePath;
+    tDebug() << Q_FUNC_INFO << "Finishing indexing:" << m_lucenePath;
     m_luceneWriter->optimize();
     m_luceneWriter->close();
     delete m_luceneWriter;
@@ -215,6 +215,7 @@ FuzzyIndex::deleteIndex()
     TomahawkUtils::removeDirectory( m_lucenePath );
 }
 
+
 void
 FuzzyIndex::updateIndex()
 {
diff --git a/src/libtomahawk/resolvers/JSResolverHelper.cpp b/src/libtomahawk/resolvers/JSResolverHelper.cpp
index 191691bda..3478e11f3 100644
--- a/src/libtomahawk/resolvers/JSResolverHelper.cpp
+++ b/src/libtomahawk/resolvers/JSResolverHelper.cpp
@@ -764,6 +764,7 @@ JSResolverHelper::indexDataFromVariant( const QVariantMap &map, struct Tomahawk:
 void
 JSResolverHelper::createFuzzyIndex( const QVariantList& list )
 {
+    tDebug() << Q_FUNC_INFO;
     if ( m_resolver->d_func()->fuzzyIndex.isNull() )
     {
         m_resolver->d_func()->fuzzyIndex.reset( new FuzzyIndex( m_resolver, m_resolver->d_func()->accountId + ".lucene" , true ) );