From 6ff5bbde98b9d262ba41c0739c94c389a315319a Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Mon, 12 Aug 2024 01:09:58 +0200 Subject: [PATCH] print supported algs --- ssh-transport/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-transport/src/lib.rs b/ssh-transport/src/lib.rs index d80d3b5..f09cd9d 100644 --- a/ssh-transport/src/lib.rs +++ b/ssh-transport/src/lib.rs @@ -168,7 +168,7 @@ impl ServerConnection { Ok(expected) } else { Err(client_error!( - "client does not supported algorithm {expected}" + "client does not supported algorithm {expected}. supported: {list:?}", )) } };