From: Yu Watanabe Date: Sun, 18 Apr 2021 16:23:54 +0000 (+0900) Subject: network: show route metric in debug log X-Git-Tag: v249-rc1~375^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8d21c91f9a6875981ba2a6f05c646c5aaa815d9;p=thirdparty%2Fsystemd.git network: show route metric in debug log --- diff --git a/src/network/networkd-route.c b/src/network/networkd-route.c index a74541a6c95..9ed30d69ed6 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); } }