From: Felix Fietkau Date: Tue, 18 Oct 2011 22:17:06 +0000 (+0200) Subject: add log messages for interface up/down X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=296a10e3eed1dfd5b5a96eea1309246ac34733d7 add log messages for interface up/down --- 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;