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:
parent
3d37b4a956
commit
61ce4cd954
@ -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),
|
||||
}
|
||||
|
@ -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 => {
|
||||
|
Loading…
Reference in New Issue
Block a user