fix(logging): not logging error when creating app (#2)

Reviewed-on: #2
Co-authored-by: LukaDev <hi@lukadev.me>
Co-committed-by: LukaDev <hi@lukadev.me>
This commit is contained in:
LukaDev 2025-08-18 18:18:00 +01:00 committed by Erica Marigold
parent ad38a34c5a
commit b878008c25

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)),