-Added some error checking to torrent file writing
[qtrapids] / src / plugins / searchplugin / SearchPlugin.cpp
index 55e104e..4440063 100644 (file)
@@ -100,15 +100,19 @@ namespace qtrapids
        
        void SearchPlugin::on_loadFinished(bool ok)
        {
+#ifdef QTRAPIDS_DEBUG
                if (ok) {
-                       qDebug() << "on_loadFinished()";
+                       qDebug() << "on_loadFinished(): success";
                }
+#endif
        }
        
        
        void SearchPlugin::on_searchResult(QWidget* resultWidget)
        {
+#ifdef QTRAPIDS_DEBUG
                qDebug() << "on_searchResult()";
+#endif
                if (host_) {
                        host_->addPluginWidget(resultWidget, qtrapids::PluginHostInterface::TAB_PAGE);
                }
@@ -124,7 +128,9 @@ namespace qtrapids
                /// @todo We should also check MIME-type, instead of relying on file suffix.
                /// @todo Also, after downloading, the torrent bencoding validity should be checked at plugin host..
                if (fInfo.suffix() == "torrent") {
+#ifdef QTRAPIDS_DEBUG
                        qDebug() << "IS TORRENT";
+#endif
                        QString filename = fInfo.fileName();
                        
                        // Destroy ongoing download, if any.
@@ -147,7 +153,9 @@ namespace qtrapids
        
        void SearchPlugin::on_downloadFinished(QString filepath)
        {
+#ifdef QTRAPIDS_DEBUG
                qDebug() << "TORRENT DOWNLOADED: " << filepath;
+#endif
                delete dlManager_;
                dlManager_ = NULL;
                host_->eventRequest(QVariant(filepath), qtrapids::PluginHostInterface::OPEN_FILE);