diff options
author | Karl Palsson <karlp@etactica.com> | 2016-09-22 17:32:18 +0000 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-09-27 18:14:18 +0200 |
commit | 6292fcd5c2b73cdc3cbc8942672cf7a4173354b1 (patch) | |
tree | 73cda7f0cd20929bc2978ffaee61bd6c24fccb1d | |
parent | e63a2837acfaf54c97a9db466bf485e9f7024fe8 (diff) |
odhcpd: remove superfluous log output.
Drop pointless syslog. The single line just doubles the amount of lines
logged to syslog without adding any value.
Signed-off-by: Karl Palsson <karlp@etactica.com>
-rw-r--r-- | src/odhcpd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/odhcpd.c b/src/odhcpd.c index 74830ac..6f034bf 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -443,7 +443,6 @@ static void odhcpd_receive_packets(struct uloop_fd *u, _unused unsigned int even else if (addr.in.sin_family == AF_INET) inet_ntop(AF_INET, &addr.in.sin_addr, ipbuf, sizeof(ipbuf)); - syslog(LOG_DEBUG, "--"); syslog(LOG_DEBUG, "Received %li Bytes from %s%%%s", (long)len, ipbuf, (iface) ? iface->ifname : "netlink"); |