Removed unnecessary logging messages

This commit is contained in:
vemax78 2014-02-16 19:17:21 +01:00
parent 6590c50f5a
commit dff6ecb5e0
2 changed files with 1 additions and 3 deletions

View File

@ -147,10 +147,8 @@ int netlink_set_link_status(struct netlink* netlinkhandle, int ifindex, int link
/* Send new interface operation state */ /* Send new interface operation state */
if (send(netlinkhandle->sock, &request, request.hdr.nlmsg_len, 0) < 0) { if (send(netlinkhandle->sock, &request, request.hdr.nlmsg_len, 0) < 0) {
capwap_logging_debug("*** netlink_set_link_status error");
return -1; return -1;
} }
capwap_logging_debug("*** netlink_set_link_status complete");
return 0; return 0;
} }

View File

@ -1365,7 +1365,7 @@ static void nl80211_global_newlink_event(wifi_global_handle handle, struct ifinf
/* */ /* */
static void nl80211_global_dellink_event(wifi_global_handle handle, struct ifinfomsg* infomsg, uint8_t* data, int length) { static void nl80211_global_dellink_event(wifi_global_handle handle, struct ifinfomsg* infomsg, uint8_t* data, int length) {
capwap_logging_debug("*** Del link"); /* TODO */
} }
/* */ /* */