Get rid of junky timestamps, along with some select pointless log messages

This commit is contained in:
Petr Mrázek
2013-10-06 03:07:57 +02:00
parent 9cef16a47d
commit 8b18af0515
6 changed files with 54 additions and 62 deletions

View File

@ -75,7 +75,6 @@ bool ensureFilePathExists(QString filenamepath)
QDir dir;
QString ensuredPath = a.path();
bool success = dir.mkpath ( ensuredPath );
qDebug() << "ensureFilePathExists:" << success << ensuredPath << filenamepath;
return success;
}
@ -85,7 +84,6 @@ bool ensureFolderPathExists(QString foldernamepath)
QDir dir;
QString ensuredPath = a.filePath();
bool success = dir.mkpath ( ensuredPath );
qDebug() << "ensureFolderPathExists:" << success << ensuredPath << foldernamepath;
return success;
}