diff options
author | BlackDex <[email protected]> | 2021-12-24 18:24:25 +0100 |
---|---|---|
committer | BlackDex <[email protected]> | 2021-12-24 18:24:25 +0100 |
commit | 2c94ea075c3074a7930766f670fcf27eb97e4495 (patch) | |
tree | 371b6a9939ad15dddda381a4d54cf5861c83a936 | |
parent | 0a5df06e77fb2359dbe0496e1e669e6d5b42cde5 (diff) | |
download | vaultwarden-2c94ea075c3074a7930766f670fcf27eb97e4495.tar.gz vaultwarden-2c94ea075c3074a7930766f670fcf27eb97e4495.zip |
Small changes to icon log messages.
As requested in #2136, some small changes on the type of log messages
and wording used.
Resolves #2136
-rw-r--r-- | src/api/icons.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/api/icons.rs b/src/api/icons.rs index ff71cd57..8d87b10a 100644 --- a/src/api/icons.rs +++ b/src/api/icons.rs @@ -294,7 +294,7 @@ fn is_domain_blacklisted(domain: &str) -> bool { // Use the pre-generate Regex stored in a Lazy HashMap. if regex.is_match(domain) { - warn!("Blacklisted domain: {} matched ICON_BLACKLIST_REGEX", domain); + debug!("Blacklisted domain: {} matched ICON_BLACKLIST_REGEX", domain); is_blacklisted = true; } } @@ -330,7 +330,7 @@ fn get_icon(domain: &str) -> Option<(Vec<u8>, String)> { Some((icon, icon_type.unwrap_or("x-icon").to_string())) } Err(e) => { - error!("Error downloading icon: {:?}", e); + warn!("Unable to download icon: {:?}", e); let miss_indicator = path + ".miss"; save_icon(&miss_indicator, &[]); None @@ -599,7 +599,7 @@ fn get_page(url: &str) -> Result<Response, Error> { fn get_page_with_referer(url: &str, referer: &str) -> Result<Response, Error> { if is_domain_blacklisted(url::Url::parse(url).unwrap().host_str().unwrap_or_default()) { - err!("Favicon resolves to a blacklisted domain or IP!", url); + warn!("Favicon '{}' resolves to a blacklisted domain or IP!", url); } let mut client = CLIENT.get(url); @@ -757,10 +757,10 @@ fn save_icon(path: &str, icon: &[u8]) { f.write_all(icon).expect("Error writing icon file"); } Err(ref e) if e.kind() == std::io::ErrorKind::NotFound => { - create_dir_all(&CONFIG.icon_cache_folder()).expect("Error creating icon cache"); + create_dir_all(&CONFIG.icon_cache_folder()).expect("Error creating icon cache folder"); } Err(e) => { - warn!("Icon save error: {:?}", e); + warn!("Unable to save icon: {:?}", e); } } } |