summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-07-11 13:21:09 +0300
committerGitHub <noreply@github.com>2023-07-11 13:21:09 +0300
commitd052f417cb035f726ea6e39ee143197272facbda (patch)
treedf382cbbfdfccbb8afcc31eaae8426ab8c600186
parent41e35fe8c06a3706a96ee46ba1f988e1a78f2031 (diff)
parent5581a7fc08a5eff20ec9a3add62b17d74d18d7ab (diff)
Merge pull request #13976 from anlancs/fix/cleanup-23
zebra: adjust one debug info
-rw-r--r--zebra/redistribute.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/zebra/redistribute.c b/zebra/redistribute.c
index 47ecbc0b44..11b7b7cf82 100644
--- a/zebra/redistribute.c
+++ b/zebra/redistribute.c
@@ -256,12 +256,11 @@ void redistribute_delete(const struct route_node *rn,
table = new_re->table;
}
- zlog_debug(
- "%u:%u%pRN: Redist del: re %p (%u:%s), new re %p (%u:%s)",
- vrfid, table, rn, old_re, old_inst,
- old_re ? zebra_route_string(old_re->type) : "None",
- new_re, new_inst,
- new_re ? zebra_route_string(new_re->type) : "None");
+ zlog_debug("(%u:%u):%pRN: Redist del: re %p (%u:%s), new re %p (%u:%s)",
+ vrfid, table, rn, old_re, old_inst,
+ old_re ? zebra_route_string(old_re->type) : "None",
+ new_re, new_inst,
+ new_re ? zebra_route_string(new_re->type) : "None");
}
/* Skip invalid (e.g. linklocal) prefix */