Change wording in group related log messages

This commit is contained in:
Robbert van der Helm
2020-05-23 15:16:33 +02:00
parent 9c901935d4
commit c387238b78
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -773,7 +773,7 @@ void PluginBridge::log_init_message() {
<< std::endl;
init_msg << "hosting mode: '";
if (config.group.has_value()) {
init_msg << "in group \"" << config.group.value() << "\"";
init_msg << "plugin group \"" << config.group.value() << "\"";
} else {
init_msg << "individual";
}
+1 -1
View File
@@ -119,7 +119,7 @@ void GroupBridge::handle_host_plugin(const GroupRequest request) {
// Blocks the main thread until the plugin shuts down
bridge.handle_dispatch();
logger.log("" + request.plugin_path + "' has exited");
logger.log("'" + request.plugin_path + "' has exited");
} catch (const std::runtime_error& error) {
logger.log("Error while initializing '" + request.plugin_path + "':");
logger.log(error.what());