diff options
| author | Mason Reed <mason@vector35.com> | 2025-11-05 12:37:33 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-11-05 12:37:33 -0500 |
| commit | 733224d56c19ea6f3c98f83b837ca5891d3dd182 (patch) | |
| tree | ec4da977c9b0532505666d6776293eb04a31c0a4 /plugins | |
| parent | 0de9b1814d8b260f59d0129359a6dfa24977accb (diff) | |
[WARP] Demote server disconnect failure to warning
Its not critical, but I still want it to be visible when it fails
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/warp/src/plugin.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/warp/src/plugin.rs b/plugins/warp/src/plugin.rs index 4364508b..917c849d 100644 --- a/plugins/warp/src/plugin.rs +++ b/plugins/warp/src/plugin.rs @@ -49,7 +49,7 @@ fn load_bundled_signatures() { log::debug!("{:#?}", user_disk_container); add_cached_container(user_disk_container); } - log::info!("Loading bundled files took {:?}", start.elapsed()); + log::info!("Loading files took {:?}", start.elapsed()); background_task.finish(); } @@ -60,7 +60,7 @@ fn load_network_container() { let network_client = NetworkClient::new(url.clone(), api_key.clone()); // Before constructing the container, let's make sure that the server is OK. if let Err(e) = network_client.status() { - log::error!("Server '{}' failed to connect: {}", url, e); + log::warn!("Server '{}' failed to connect: {}", url, e); return; } |
