From 1458ba6f6f477a828834d9355c21e4efbc9a9b50 Mon Sep 17 00:00:00 2001 From: Louis-Bertrand Varin Date: Fri, 6 Jan 2017 20:24:50 -0500 Subject: [PATCH] qInfo -> qDebug and missing imports. --- utils/merge-databases.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/merge-databases.cpp b/utils/merge-databases.cpp index 3644df187..e1a587fd2 100644 --- a/utils/merge-databases.cpp +++ b/utils/merge-databases.cpp @@ -20,6 +20,8 @@ #include #include #include +#include +#include #include "core/Database.h" #include "crypto/Crypto.h" @@ -29,6 +31,7 @@ #include "keys/FileKey.h" #include "keys/PasswordKey.h" + int main(int argc, char **argv) { QCoreApplication app(argc, argv); @@ -113,7 +116,7 @@ int main(int argc, char **argv) return 0; } - qInfo("Successfully merged the database files.\n"); + qDebug("Successfully merged the database files.\n"); return 1; }