From 7ffcf680a5c20016095d2de05eace336b99c31ef Mon Sep 17 00:00:00 2001 From: "Marco Cadetg (aider)" Date: Fri, 9 May 2025 18:43:09 +0200 Subject: [PATCH] fix: Rename dump_connections_to_log to log_all_connections --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index c83b610..9b80200 100644 --- a/src/app.rs +++ b/src/app.rs @@ -207,7 +207,7 @@ impl App { } KeyCode::Char('d') if key.modifiers.contains(KeyModifiers::CONTROL) => { // Ctrl + d self.test_method(); // Call the new test method - self.dump_connections_to_log(); + self.log_all_connections(); // Renamed method call None } KeyCode::Char('d') => {