fix(logging): not logging error when creating app

This commit is contained in:
LukaDev 2025-08-18 18:50:00 +02:00
parent ad38a34c5a
commit 0c127520f2
Signed by: lukadev
SSH key fingerprint: SHA256:VsRpNAFdG9n98ywmBc/QTkH4t0tx415w4VxGxNY5ZO8

View file

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