From 296a10e3eed1dfd5b5a96eea1309246ac34733d7 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 19 Oct 2011 00:17:06 +0200 Subject: [PATCH] add log messages for interface up/down --- interface.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface.c b/interface.c index 7837274..f03a7b0 100644 --- a/interface.c +++ b/interface.c @@ -271,11 +271,13 @@ interface_proto_cb(struct interface_proto_state *state, enum interface_proto_eve iface->start_time = system_get_rtime(); interface_event(iface, IFEV_UP); interface_write_resolv_conf(); + netifd_log_message(L_NOTICE, "Interface '%s' is now up\n", iface->name); break; case IFPEV_DOWN: if (iface->state == IFS_DOWN) return; + netifd_log_message(L_NOTICE, "Interface '%s' is now down\n", iface->name); system_flush_routes(); mark_interface_down(iface); interface_handle_config_change(iface); @@ -288,6 +290,7 @@ interface_proto_cb(struct interface_proto_state *state, enum interface_proto_eve if (iface->state != IFS_UP) return; + netifd_log_message(L_NOTICE, "Interface '%s' has lost the connection\n", iface->name); iface->state = IFS_SETUP; interface_event(iface, IFEV_DOWN); break; -- 2.11.0