diff options
author | Denys Vlasenko | 2017-07-21 12:04:22 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-07-21 12:04:22 +0200 |
commit | 168f0ef8ddb6c840662bd15bad86177b0d238120 (patch) | |
tree | 4df19353fb0fe0d88fc4b21b8dfd5577e8f20a25 /networking/udhcp/d6_dhcpc.c | |
parent | a680f40bfef135bf0511bbbdb5c2f6f4c4adea7c (diff) | |
download | busybox-168f0ef8ddb6c840662bd15bad86177b0d238120.zip busybox-168f0ef8ddb6c840662bd15bad86177b0d238120.tar.gz |
udhcpc[6]: on log level 1, three messages about raw socket is overkill
Move first two messages to log2 level:
08:46:32.23824 udhcpc: opening raw socket on ifindex 2
08:46:32.23825 udhcpc: got raw socket fd
08:46:32.26354 udhcpc: created raw socket
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/d6_dhcpc.c')
-rw-r--r-- | networking/udhcp/d6_dhcpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c index ebf7934..66bc021 100644 --- a/networking/udhcp/d6_dhcpc.c +++ b/networking/udhcp/d6_dhcpc.c @@ -877,10 +877,10 @@ static int d6_raw_socket(int ifindex) }; #endif - log1("opening raw socket on ifindex %d", ifindex); //log2? + log2("opening raw socket on ifindex %d", ifindex); fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6)); - log1("got raw socket fd %d", fd); //log2? + log2("got raw socket fd %d", fd); sock.sll_family = AF_PACKET; sock.sll_protocol = htons(ETH_P_IPV6); |