From a8d21c91f9a6875981ba2a6f05c646c5aaa815d9 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 19 Apr 2021 01:23:54 +0900 Subject: [PATCH] network: show route metric in debug log --- src/network/networkd-route.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index a74541a6c9..9ed30d69ed 100644 --- a/src/network/networkd-route.c +++ b/src/network/networkd-route.c @@ -628,11 +628,11 @@ static void log_route_debug(const Route *route, const char *str, const Link *lin (void) route_protocol_full_to_string_alloc(route->protocol, &proto); log_link_debug(link, - "%s route: dst: %s, src: %s, gw: %s, prefsrc: %s, scope: %s, table: %s, proto: %s, type: %s, nexthop: %"PRIu32, + "%s route: dst: %s, src: %s, gw: %s, prefsrc: %s, scope: %s, table: %s, proto: %s, type: %s, nexthop: %"PRIu32", priority: %"PRIu32, str, strna(dst), strna(src), strna(gw), strna(prefsrc), strna(scope), strna(table), strna(proto), strna(route_type_to_string(route->type)), - route->nexthop_id); + route->nexthop_id, route->priority); } } -- 2.25.1