Skip to content
Snippets Groups Projects
Commit b8ab4754 authored by 🥺's avatar 🥺 :transgender_flag: Committed by 🥺
Browse files

slight wording addition

parent 7ddf08e8
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ pub fn warn_deprecated(&self) {
.keys()
.filter(|key| DEPRECATED_KEYS.iter().any(|s| s == key))
{
warn!("Config parameter \"{}\" is deprecated.", key);
warn!("Config parameter \"{}\" is deprecated, ignoring.", key);
was_deprecated = true;
}
......@@ -179,7 +179,10 @@ pub fn warn_unknown_key(&self) {
for key in self.catchall.keys().filter(
|key| "config".to_owned().ne(key.to_owned()), /* "config" is expected */
) {
warn!("Config parameter \"{}\" is unknown to conduwuit.", key);
warn!(
"Config parameter \"{}\" is unknown to conduwuit, ignoring.",
key
);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment