From: Stephen Worley Date: Mon, 28 Sep 2020 15:37:56 +0000 (-0400) Subject: sharpd: make id log more specific X-Git-Tag: base_7.6~489^2~1 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=612fcc5e8f33249929c3e9130885b9f2f6420532;p=matthieu%2Ffrr.git sharpd: make id log more specific Make ID log more specific as to the ID being assigned here. Signed-off-by: Stephen Worley --- diff --git a/sharpd/sharp_nht.c b/sharpd/sharp_nht.c index 5b3fe2583e..7484dd3b06 100644 --- a/sharpd/sharp_nht.c +++ b/sharpd/sharp_nht.c @@ -86,7 +86,7 @@ static uint32_t nhg_id; static uint32_t sharp_get_next_nhid(void) { - zlog_debug("Id assigned: %u", nhg_id); + zlog_debug("NHG ID assigned: %u", nhg_id); return nhg_id++; }