Skip to content

Commit

Permalink
Default log debug and set filter in main
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Aug 14, 2023
1 parent 25d52b7 commit 5a2a2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/pypluginloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<QLoggingCategory>(logging_category_name.c_str(), QtInfoMsg);
logging_category = make_unique<QLoggingCategory>(logging_category_name.c_str(), QtDebugMsg);

// Finally set state based on errors
if (!errors.isEmpty())
Expand Down

0 comments on commit 5a2a2fb

Please sign in to comment.