From 937d55ee67ce484065f5a5ece7dd59fc17097ca6 Mon Sep 17 00:00:00 2001 From: elieyal <17270807+elieyal@users.noreply.github.com> Date: Tue, 26 Jun 2018 13:01:04 +0300 Subject: [PATCH] Updated change from debug to error As suggest by @rpv-tomsk --- src/network.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/network.c b/src/network.c index f2e4b47d..d602dfc8 100644 --- a/src/network.c +++ b/src/network.c @@ -1691,7 +1691,7 @@ static int network_bind_socket_to_addr(sockent_t *se, if (se->data.client.bind_addr == NULL) return 0; - DEBUG("fd %i: bind socket to address", se->data.client.fd); + DEBUG("network_plugin: fd %i: bind socket to address", se->data.client.fd); char pbuffer[64]; if (ai->ai_family == AF_INET) { @@ -1701,8 +1701,8 @@ static int network_bind_socket_to_addr(sockent_t *se, DEBUG("network_plugin: binding client socket to ipv4 address: %s", pbuffer); if (bind(se->data.client.fd, (struct sockaddr *)addr, sizeof(*addr)) == -1) { - ERROR("network_plugin: failed to bind client socket (ipv4): %s", - STRERRNO); + ERROR("network plugin: failed to bind client socket (ipv4) to %s: %s", + pbuffer, STRERRNO); return -1; } } else if (ai->ai_family == AF_INET6) { @@ -1712,8 +1712,8 @@ static int network_bind_socket_to_addr(sockent_t *se, DEBUG("network_plugin: binding client socket to ipv6 address: %s", pbuffer); if (bind(se->data.client.fd, (struct sockaddr *)addr, sizeof(*addr)) == -1) { - ERROR("network_plugin: failed to bind client socket (ipv6): %s", - STRERRNO); + ERROR("network plugin: failed to bind client socket (ipv6) to %s: %s", + pbuffer, STRERRNO); return -1; } } -- 2.11.0