diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-09-23 14:16:03 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-09-23 14:16:03 +0200 |
commit | e7c84c4161a9670755c9eaf08b17bccfde256cf9 (patch) | |
tree | 2c423716d222af5a28f608961906e1051857406e | |
parent | 8a901ee2447e2a2f4f3abdd57bd67dbe5c575812 (diff) | |
download | pingu-e7c84c4161a9670755c9eaf08b17bccfde256cf9.tar.bz2 pingu-e7c84c4161a9670755c9eaf08b17bccfde256cf9.tar.xz |
pingu_netlink: log route changes as info instead as debug
Routing changes should not happen that often so we can log them as info
-rw-r--r-- | pingu_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pingu_netlink.c b/pingu_netlink.c index e9781fa..5c6fba5 100644 --- a/pingu_netlink.c +++ b/pingu_netlink.c @@ -647,7 +647,7 @@ static void log_route_change(struct pingu_gateway *route, sockaddr_to_string(&route->gw_addr, gwstr, sizeof(gwstr)); if (gwstr[0] != '\0') snprintf(viastr, sizeof(viastr), "via %s ", gwstr); - log_debug("%s route to %s/%i %sdev %s table %i", actionstr, + log_info("%s route to %s/%i %sdev %s table %i", actionstr, deststr, route->dst_len, viastr, ifname, table); } |