We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de9b18 commit 733224dCopy full SHA for 733224d
plugins/warp/src/plugin.rs
@@ -49,7 +49,7 @@ fn load_bundled_signatures() {
49
log::debug!("{:#?}", user_disk_container);
50
add_cached_container(user_disk_container);
51
}
52
- log::info!("Loading bundled files took {:?}", start.elapsed());
+ log::info!("Loading files took {:?}", start.elapsed());
53
background_task.finish();
54
55
@@ -60,7 +60,7 @@ fn load_network_container() {
60
let network_client = NetworkClient::new(url.clone(), api_key.clone());
61
// Before constructing the container, let's make sure that the server is OK.
62
if let Err(e) = network_client.status() {
63
- log::error!("Server '{}' failed to connect: {}", url, e);
+ log::warn!("Server '{}' failed to connect: {}", url, e);
64
return;
65
66
0 commit comments