Changed log levels to make alfis less chatty.

This commit is contained in:
Revertron
2021-04-03 18:29:41 +02:00
parent f9e90ff655
commit 6dae3e41c0
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -251,7 +251,7 @@ fn action_loaded(context: &Arc<Mutex<Context>>, web_view: &mut WebView<()>) {
}
}
Event::BlockchainChanged {index} => {
info!("Current blockchain height is {}", index);
debug!("Current blockchain height is {}", index);
if let Ok(zones) = serde_json::to_string(&context.chain.get_zones()) {
let _ = handle.dispatch(move |web_view|{
web_view.eval(&format!("zonesChanged('{}');", &zones))