1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 03:09:06 +03:00

gui: reduce log level for Ding log line

Since we have working visual and audible bells, we can
avoid polluting the logs with this.

refs: #1844
This commit is contained in:
Wez Furlong 2022-04-09 06:37:24 -07:00
parent 394c62d56c
commit bbead38f82

View File

@ -1042,7 +1042,7 @@ impl TermWindow {
AudibleBell::Disabled => {}
}
log::info!("Ding! (this is the bell) in pane {}", pane_id);
log::trace!("Ding! (this is the bell) in pane {}", pane_id);
self.emit_window_event("bell", Some(pane_id));
let mut per_pane = self.pane_state(pane_id);