Remove unecessary debug

This commit is contained in:
Atlante45 2018-02-13 18:38:13 -08:00
parent c41ad1a699
commit d4b4c55673
3 changed files with 0 additions and 5 deletions

View file

@ -84,10 +84,7 @@ public:
void loadBackup(QuaZip& zip) {}
void createBackup(QuaZip& zip) const {
qDebug() << "Creating a backup from handler";
QFile entitiesFile { _entitiesFilePath };
qDebug() << entitiesFile.size();
if (entitiesFile.open(QIODevice::ReadOnly)) {
QuaZipFile zipFile { &zip };

View file

@ -154,7 +154,6 @@ void BackupSupervisor::loadBackup(QuaZip& zip) {
}
void BackupSupervisor::createBackup(QuaZip& zip) {
qDebug() << Q_FUNC_INFO;
if (operationInProgress()) {
qCWarning(backup_supervisor) << "There is already an operation in progress.";
return;

View file

@ -292,7 +292,6 @@ void DomainContentBackupManager::backup() {
}
for (auto& handler : _backupHandlers) {
qDebug() << "Backup handler";
handler.createBackup(zip);
}