From e30fbc6dfcb4f57a2345a9a33fb4888b162cfd37 Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Sun, 21 Jan 2024 12:41:58 +0100 Subject: [PATCH] err on invalid feature flag --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index e99518a7..e5a556ce 100644 --- a/src/config.rs +++ b/src/config.rs @@ -782,7 +782,7 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> { &["autofill-overlay", "autofill-v2", "browser-fileless-import", "fido2-vault-credentials"]; for flag in parse_experimental_client_feature_flags(&cfg.experimental_client_feature_flags).keys() { if !KNOWN_FLAGS.contains(&flag.as_str()) { - warn!("The experimental client feature flag {flag:?} is unrecognized. Please ensure the feature flag is spelled correctly and that it is supported in this version."); + err!("The experimental client feature flag {flag:?} is unrecognized. Please ensure the feature flag is spelled correctly and that it is supported in this version."); } }