mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
Remove unecessary debug
This commit is contained in:
parent
c41ad1a699
commit
d4b4c55673
3 changed files with 0 additions and 5 deletions
|
@ -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 };
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -292,7 +292,6 @@ void DomainContentBackupManager::backup() {
|
|||
}
|
||||
|
||||
for (auto& handler : _backupHandlers) {
|
||||
qDebug() << "Backup handler";
|
||||
handler.createBackup(zip);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue