From 6cb1c66041ee14dbedad3aeeb90190ea5dddf917 Mon Sep 17 00:00:00 2001 From: Jon Atack Date: Tue, 13 Jun 2023 12:51:39 -0600 Subject: init: remove config option names from translated -loglevel strings --- src/init/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/init') diff --git a/src/init/common.cpp b/src/init/common.cpp index b9c19725b1..f3f7c696c5 100644 --- a/src/init/common.cpp +++ b/src/init/common.cpp @@ -66,13 +66,13 @@ util::Result SetLoggingLevel(const ArgsManager& args) if (level_str.find_first_of(':', 3) == std::string::npos) { // user passed a global log level, i.e. -loglevel= if (!LogInstance().SetLogLevel(level_str)) { - return util::Error{strprintf(_("Unsupported global logging level -loglevel=%s. Valid values: %s."), level_str, LogInstance().LogLevelsString())}; + return util::Error{strprintf(_("Unsupported global logging level %s=%s. Valid values: %s."), "-loglevel", level_str, LogInstance().LogLevelsString())}; } } else { // user passed a category-specific log level, i.e. -loglevel=: const auto& toks = SplitString(level_str, ':'); if (!(toks.size() == 2 && LogInstance().SetCategoryLogLevel(toks[0], toks[1]))) { - return util::Error{strprintf(_("Unsupported category-specific logging level -loglevel=%s. Expected -loglevel=:. Valid categories: %s. Valid loglevels: %s."), level_str, LogInstance().LogCategoriesString(), LogInstance().LogLevelsString())}; + return util::Error{strprintf(_("Unsupported category-specific logging level %1$s=%2$s. Expected %1$s=:. Valid categories: %3$s. Valid loglevels: %4$s."), "-loglevel", level_str, LogInstance().LogCategoriesString(), LogInstance().LogLevelsString())}; } } } -- cgit v1.2.3