mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Fix alignment in initialization message
This commit is contained in:
@@ -113,19 +113,19 @@ class PluginBridge {
|
|||||||
|
|
||||||
init_msg << "Initializing yabridge version " << yabridge_git_version
|
init_msg << "Initializing yabridge version " << yabridge_git_version
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
init_msg << "host: '" << plugin_host->path().string() << "'"
|
init_msg << "host: '" << plugin_host->path().string() << "'"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
init_msg << "plugin: '" << info.windows_plugin_path.string()
|
init_msg << "plugin: '" << info.windows_plugin_path.string()
|
||||||
<< "'" << std::endl;
|
<< "'" << std::endl;
|
||||||
init_msg << "plugin type: '" << plugin_type_to_string(info.plugin_type)
|
init_msg << "plugin type: '"
|
||||||
<< "'" << std::endl;
|
<< plugin_type_to_string(info.plugin_type) << "'" << std::endl;
|
||||||
init_msg << "realtime: '"
|
init_msg << "realtime: '"
|
||||||
<< (has_realtime_priority.get() ? "yes" : "no") << "'"
|
<< (has_realtime_priority.get() ? "yes" : "no") << "'"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
init_msg << "sockets: '" << sockets.base_dir.string() << "'"
|
init_msg << "sockets: '" << sockets.base_dir.string() << "'"
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
init_msg << "wine prefix: '";
|
|
||||||
|
|
||||||
|
init_msg << "wine prefix: '";
|
||||||
std::visit(
|
std::visit(
|
||||||
overload{
|
overload{
|
||||||
[&](const OverridenWinePrefix& prefix) {
|
[&](const OverridenWinePrefix& prefix) {
|
||||||
@@ -139,7 +139,8 @@ class PluginBridge {
|
|||||||
info.wine_prefix);
|
info.wine_prefix);
|
||||||
init_msg << "'" << std::endl;
|
init_msg << "'" << std::endl;
|
||||||
|
|
||||||
init_msg << "wine version: '" << get_wine_version() << "'" << std::endl;
|
init_msg << "wine version: '" << get_wine_version() << "'"
|
||||||
|
<< std::endl;
|
||||||
init_msg << std::endl;
|
init_msg << std::endl;
|
||||||
|
|
||||||
// Print the path to the currently loaded configuration file and all
|
// Print the path to the currently loaded configuration file and all
|
||||||
|
|||||||
Reference in New Issue
Block a user