Silence the warning about not being able to translate plugins

This commit is contained in:
Michael Zanetti 2020-09-08 12:06:16 +02:00
parent 2ca4b2f32f
commit 81ac85dd55

View File

@ -57,7 +57,7 @@ QString Translator::translate(const PluginId &pluginId, const QString &string, c
{ {
IntegrationPlugin *plugin = m_thingManager->plugins().findById(pluginId); IntegrationPlugin *plugin = m_thingManager->plugins().findById(pluginId);
if (!plugin) { if (!plugin) {
qCWarning(dcThingManager()) << "Unable to translate" << string << "Plugin not found"; qCDebug(dcThingManager()) << "Unable to translate" << string << "Plugin not found";
return string; return string;
} }