Remove extraneous debug.

This commit is contained in:
John Maguire 2011-09-30 16:00:05 +02:00
parent 30014f512e
commit 870ffdfb46
1 changed files with 0 additions and 6 deletions

View File

@ -32,13 +32,9 @@ void GroovesharkSearchProvider::Init(GrooveSharkService* service) {
void GroovesharkSearchProvider::SearchAsync(int id, const QString& query) {
const int service_id = service_->SimpleSearch(query);
pending_searches_[service_id] = id;
qLog(Debug) << "Searching grooveshark for:" << query;
}
void GroovesharkSearchProvider::SearchDone(int id, SongList songs) {
qLog(Debug) << Q_FUNC_INFO;
// Map back to the original id.
const int global_search_id = pending_searches_.take(id);
@ -52,8 +48,6 @@ void GroovesharkSearchProvider::SearchDone(int id, SongList songs) {
ret << result;
}
qLog(Debug) << "Found:" << ret.size() << "songs from grooveshark";
emit ResultsAvailable(global_search_id, ret);
emit SearchFinished(global_search_id);
}