Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
0c127520f2
fix(logging): not logging error when creating app 2025-08-18 18:50:00 +02:00

View file

@ -88,6 +88,7 @@ impl SshSession {
keystroke_rx, keystroke_rx,
resize_rx, resize_rx,
) )
.inspect_err(|err| tracing::error!("Failed to create app: {err}"))
.ok() .ok()
.map(|app| Arc::new(Mutex::new(app))), .map(|app| Arc::new(Mutex::new(app))),
tui: Arc::new(RwLock::new(None)), tui: Arc::new(RwLock::new(None)),