From ac2d5c21800cb24048aebf371165ddbde229544d Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 9 Jul 2018 20:51:02 +0200 Subject: [PATCH] fix-message #303 --- tools/linuxdeployqt/shared.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index 7e10db5..fb0c1a8 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1366,11 +1366,11 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath LogDebug() << plugin << "appended"; } else { - LogDebug() << "The plugin" << plugin << "was already deployed." ; + LogWarning() <<"The plugin" << pluginSourcePath + "/" + plugin << "could not be found. Please check spelling and try again!"; } } else { - LogWarning() << "The plugin" << pluginSourcePath + "/" + plugin << "could not be found. Please check spelling and try again!"; + LogDebug() << "The plugin" << plugin << "was already deployed." ; } } }