From 5a2a2fb3765ae3c5cd873ba00e0fc0ecfe9ce875 Mon Sep 17 00:00:00 2001 From: Manuel Schneider Date: Mon, 14 Aug 2023 17:25:24 +0200 Subject: [PATCH] Default log debug and set filter in main Related: https://github.com/albertlauncher/python/issues/181 --- python/src/pypluginloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/pypluginloader.cpp b/python/src/pypluginloader.cpp index 74e980fe..48cf127a 100644 --- a/python/src/pypluginloader.cpp +++ b/python/src/pypluginloader.cpp @@ -182,7 +182,7 @@ PyPluginLoader::PyPluginLoader(Plugin &provider, const QFileInfo &file_info) errors << QString("Platform not supported. Supported: %1").arg(metadata_.platforms.join(", ")); logging_category_name = metadata_.id.toUtf8().toStdString(); - logging_category = make_unique(logging_category_name.c_str(), QtInfoMsg); + logging_category = make_unique(logging_category_name.c_str(), QtDebugMsg); // Finally set state based on errors if (!errors.isEmpty())