From 9d33b9989e0f06974caa12ea42916c9e23b1005e Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 23 Jul 2020 18:39:48 +0200 Subject: [PATCH] Align config options in startup message --- src/plugin/plugin-bridge.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin/plugin-bridge.cpp b/src/plugin/plugin-bridge.cpp index 45547a13..0298960e 100644 --- a/src/plugin/plugin-bridge.cpp +++ b/src/plugin/plugin-bridge.cpp @@ -618,10 +618,10 @@ void PluginBridge::log_init_message() { // settings in use. Printing the matched glob pattern could also be useful // but it'll be very noisy and it's likely going to be clear from the shown // values anyways. - init_msg << "config from: '" + init_msg << "config from: '" << config.matched_file.value_or("").string() << "'" << std::endl; - init_msg << "hosting mode: '"; + init_msg << "hosting mode: '"; if (config.group) { init_msg << "plugin group \"" << *config.group << "\""; } else {