1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

fixup some more log levels

This commit is contained in:
Wez Furlong 2020-12-21 22:13:41 -08:00
parent 3d37b4a956
commit 61ce4cd954
2 changed files with 5 additions and 5 deletions

View File

@ -2839,7 +2839,7 @@ impl<'a> Performer<'a> {
ControlCode::HTS => self.c1_hts(),
ControlCode::IND => self.c1_index(),
ControlCode::NEL => self.c1_nel(),
ControlCode::Bell => error!("Ding! (this is the bell)"),
ControlCode::Bell => log::info!("Ding! (this is the bell)"),
ControlCode::RI => self.c1_reverse_index(),
_ => error!("unhandled ControlCode {:?}", control),
}

View File

@ -1778,12 +1778,12 @@ impl TermWindow {
.get_active_pane()
.ok_or_else(|| anyhow!("tab to have a pane"))?;
log::error!("doing split_pane");
log::trace!("doing split_pane");
domain
.split_pane(cmd_builder, cwd, tab.tab_id(), pane.pane_id(), direction)
.await?;
} else {
log::error!("boop");
log::error!("there is no active tab while splitting pane!?");
}
}
_ => {
@ -1900,11 +1900,11 @@ impl TermWindow {
self.spawn_command(spawn, SpawnWhere::NewWindow);
}
SplitHorizontal(spawn) => {
log::error!("SplitHorizontal {:?}", spawn);
log::trace!("SplitHorizontal {:?}", spawn);
self.spawn_command(spawn, SpawnWhere::SplitPane(SplitDirection::Horizontal));
}
SplitVertical(spawn) => {
log::error!("SplitVertical {:?}", spawn);
log::trace!("SplitVertical {:?}", spawn);
self.spawn_command(spawn, SpawnWhere::SplitPane(SplitDirection::Vertical));
}
ToggleFullScreen => {