From e67a111cd8dfe4b21cfb77baf77ffa7db477f635 Mon Sep 17 00:00:00 2001 From: Lee Smet Date: Wed, 17 Jul 2024 11:57:19 +0200 Subject: [PATCH] Fix debug log indentation Signed-off-by: Lee Smet --- mycelium/src/router.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mycelium/src/router.rs b/mycelium/src/router.rs index ebe0aec..2bce987 100644 --- a/mycelium/src/router.rs +++ b/mycelium/src/router.rs @@ -1003,13 +1003,13 @@ where let maybe_existing_entry = routing_table_entries.entry_mut(&source_peer); debug!( - subnet = %subnet, - metric = %metric, - seqno = %seqno, - router_id = %router_id, - entry_exists = maybe_existing_entry.is_some(), - update_feasible = update_feasible, - peer = source_peer.connection_identifier(), + subnet = %subnet, + metric = %metric, + seqno = %seqno, + router_id = %router_id, + entry_exists = maybe_existing_entry.is_some(), + update_feasible = update_feasible, + peer = source_peer.connection_identifier(), "Processing update packet", );