Merge PR #334: Silence the warning about not being able to translate plugins

This commit is contained in:
Jenkins nymea 2020-09-08 13:53:52 +02:00
commit eb291a47d5

View File

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