From bfa5c28285e4209ef4354d586a1a6631c9d26041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sun, 6 Sep 2020 11:54:55 +0200 Subject: [PATCH] Remove debug logs. --- src/runner/proxypluginwrappers.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/runner/proxypluginwrappers.cpp b/src/runner/proxypluginwrappers.cpp index 06a218c..208f40a 100644 --- a/src/runner/proxypluginwrappers.cpp +++ b/src/runner/proxypluginwrappers.cpp @@ -40,7 +40,6 @@ QString class_name::name() const \ \ QString class_name::localizedName() const \ { \ - log::error("{}::{}", #class_name, "localizedName"); \ return basicWrapperFunctionImplementationWithDefault(this, &class_name::localizedName_Default, "localizedName"); \ } \ \ @@ -73,7 +72,7 @@ QList class_name::settings() const \ { \ return basicWrapperFunctionImplementation>(this, "settings"); \ } \ -QString class_name::localizedName_Default() const { log::error("{}::{}", #class_name, "localizedName_Default"); return IPlugin::localizedName(); } \ +QString class_name::localizedName_Default() const { return IPlugin::localizedName(); } \ IPlugin* class_name::master_Default() const { return IPlugin::master(); } /// end COMMON_I_PLUGIN_WRAPPER_DEFINITIONS