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

« back to all changes in this revision

Viewing changes to src/service/keeper-task-backup.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:
65
65
            storage_->get_new_uploader(n_bytes, dir_name, file_name),
66
66
            std::function<void(std::shared_ptr<Uploader> const&)>{
67
67
                [this](std::shared_ptr<Uploader> const& uploader){
68
 
                    qDebug() << "uploader is" << static_cast<void*>(uploader.get());
69
68
                    int fd {-1};
70
69
                    if (uploader) {
71
 
                        qDebug() << "Helper is " <<  static_cast<void*>(helper_.data());
72
70
                        auto backup_helper = qSharedPointerDynamicCast<BackupHelper>(helper_);
73
71
                        backup_helper->set_uploader(uploader);
74
72
                        fd = backup_helper->get_helper_socket();