mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Change wording in group related log messages
This commit is contained in:
@@ -773,7 +773,7 @@ void PluginBridge::log_init_message() {
|
|||||||
<< std::endl;
|
<< std::endl;
|
||||||
init_msg << "hosting mode: '";
|
init_msg << "hosting mode: '";
|
||||||
if (config.group.has_value()) {
|
if (config.group.has_value()) {
|
||||||
init_msg << "in group \"" << config.group.value() << "\"";
|
init_msg << "plugin group \"" << config.group.value() << "\"";
|
||||||
} else {
|
} else {
|
||||||
init_msg << "individual";
|
init_msg << "individual";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ void GroupBridge::handle_host_plugin(const GroupRequest request) {
|
|||||||
// Blocks the main thread until the plugin shuts down
|
// Blocks the main thread until the plugin shuts down
|
||||||
bridge.handle_dispatch();
|
bridge.handle_dispatch();
|
||||||
|
|
||||||
logger.log("" + request.plugin_path + "' has exited");
|
logger.log("'" + request.plugin_path + "' has exited");
|
||||||
} catch (const std::runtime_error& error) {
|
} catch (const std::runtime_error& error) {
|
||||||
logger.log("Error while initializing '" + request.plugin_path + "':");
|
logger.log("Error while initializing '" + request.plugin_path + "':");
|
||||||
logger.log(error.what());
|
logger.log(error.what());
|
||||||
|
|||||||
Reference in New Issue
Block a user