Fix debug log indentation

Signed-off-by: Lee Smet <lee.smet@hotmail.com>
This commit is contained in:
Lee Smet
2024-07-17 11:57:19 +02:00
parent aa8eca71b0
commit e67a111cd8
+7 -7
View File
@@ -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",
);