~xavi-garcia-mena/keeper/accounts-selection

« back to all changes in this revision

Viewing changes to src/storage-framework/sf-downloader.cpp

  • Committer: Tarmac
  • Author(s): Xavi Garcia Mena
  • Date: 2016-12-21 17:29:58 UTC
  • mfrom: (122.3.1 keeper-less-logs)
  • Revision ID: tarmac-20161221172958-sz0yjt1i4d1bdp2q
This branch removes some log statements that were not giving too much information and some that are printed too often and  flood the logs.

Approved by Charles Kerr, unity-api-1-bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    downloader_{downloader},
33
33
    file_size_{file_size}
34
34
{
35
 
    qDebug() << "StorageFrameworkDownloader";
36
35
}
37
36
 
38
37
std::shared_ptr<QLocalSocket>
44
43
void
45
44
StorageFrameworkDownloader::finish()
46
45
{
47
 
    qDebug() << Q_FUNC_INFO << "is finishing";
48
46
    downloader_->finish_download();
49
47
    Q_EMIT(download_finished()); // TODO add the code to call finish_download
50
48
}