From bd459f786968d92bcf3be24e9aa9c7aed2e6cdea Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 10 Jun 2017 22:07:42 +0000 Subject: [PATCH] Do not error when there are no translations --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 38fec81..a59411a 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -1599,7 +1599,7 @@ void deployTranslations(const QString &appDirPath, quint64 usedQtModules) LogDebug() << "Deploying translations..."; QString qtTranslationsPath = qtToBeBundledInfo.value("QT_INSTALL_TRANSLATIONS"); if (qtTranslationsPath.isEmpty() || !QFile::exists(qtTranslationsPath)) { - LogError() << "Qt translations path could not be determined"; + LogDebug() << "Qt translations path could not be determined, maybe there are no translations?"; return; }