Partition, ...: use libfmt for logging

This commit is contained in:
Max Kellermann
2021-06-24 20:22:48 +02:00
parent 0185d58a2b
commit 6f539cfcd6
44 changed files with 320 additions and 296 deletions

View File

@@ -33,9 +33,9 @@ Check(const ConfigBlock &block)
for (const auto &i : block.block_params) {
if (!i.used)
FormatWarning(config_domain,
"option '%s' on line %i was not recognized",
i.name.c_str(), i.line);
FmtWarning(config_domain,
"option '{}' on line {} was not recognized",
i.name, i.line);
}
}

View File

@@ -116,9 +116,9 @@ ReadConfigBlock(ConfigData &config_data, BufferedReader &reader,
const ConfigTemplate &option = config_block_templates[i];
if (option.deprecated)
FormatWarning(config_file_domain,
"config parameter \"%s\" on line %u is deprecated",
name, reader.GetLineNumber());
FmtWarning(config_file_domain,
"config parameter \"{}\" on line {} is deprecated",
name, reader.GetLineNumber());
if (!option.repeatable)
if (const auto *block = config_data.GetBlock(o))
@@ -148,9 +148,9 @@ ReadConfigParam(ConfigData &config_data, BufferedReader &reader,
const ConfigTemplate &option = config_param_templates[i];
if (option.deprecated)
FormatWarning(config_file_domain,
"config parameter \"%s\" on line %u is deprecated",
name, reader.GetLineNumber());
FmtWarning(config_file_domain,
"config parameter \"{}\" on line {} is deprecated",
name, reader.GetLineNumber());
if (!option.repeatable)
/* if the option is not repeatable, override the old
@@ -238,7 +238,7 @@ ReadConfigFile(ConfigData &config_data, Path path)
assert(!path.IsNull());
const std::string path_utf8 = path.ToUTF8();
FormatDebug(config_file_domain, "loading file %s", path_utf8.c_str());
FmtDebug(config_file_domain, "loading file {}", path_utf8);
FileReader file(path);