mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-09 18:46:40 +02:00
slight wording addition
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
1905908186
commit
033dae03d7
1 changed files with 5 additions and 2 deletions
|
@ -164,7 +164,7 @@ impl Config {
|
|||
.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 @@ impl Config {
|
|||
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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue