From 81ac85dd55a73bd422680d336d4976d181d40492 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 8 Sep 2020 12:06:16 +0200 Subject: [PATCH] Silence the warning about not being able to translate plugins --- libnymea-core/integrations/translator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnymea-core/integrations/translator.cpp b/libnymea-core/integrations/translator.cpp index 0faac5f1..22b3077e 100644 --- a/libnymea-core/integrations/translator.cpp +++ b/libnymea-core/integrations/translator.cpp @@ -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; }