aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-12-12 03:10:18 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2018-12-19 22:47:53 +0000
commit0a403792145843fdbe210df171b2209dace709f1 (patch)
tree3817a7fbf92c011b4acf7111671b5fb1bb6ec70d
parent72bc8da53760646871e85d94423b42c3459650ea (diff)
mgcp_client: logging tweaks
Fix typos, use osmo_sock_get_name2() to show the tx source and target IP:port, shorten some wording. Depends: I8ad89ac447c9c582742e70d082072bdd40a5a398 (libosmocore) Change-Id: Iae728192f499330d16836d9435648f6b8ed213b6
-rw-r--r--src/libosmo-mgcp-client/mgcp_client.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/libosmo-mgcp-client/mgcp_client.c b/src/libosmo-mgcp-client/mgcp_client.c
index 2ceab3c41..8fa82cd45 100644
--- a/src/libosmo-mgcp-client/mgcp_client.c
+++ b/src/libosmo-mgcp-client/mgcp_client.c
@@ -651,11 +651,13 @@ static int mgcp_do_read(struct osmo_fd *fd)
ret = read(fd->fd, msg->data, 4096 - 128);
if (ret <= 0) {
- LOGP(DLMGCP, LOGL_ERROR, "Failed to read: %d/%s\n", errno, strerror(errno));
+ LOGP(DLMGCP, LOGL_ERROR, "Failed to read: %s: %d='%s'\n", osmo_sock_get_name2(fd->fd),
+ errno, strerror(errno));
+
msgb_free(msg);
return -1;
} else if (ret > 4096 - 128) {
- LOGP(DLMGCP, LOGL_ERROR, "Too much data: %d\n", ret);
+ LOGP(DLMGCP, LOGL_ERROR, "Too much data: %s: %d\n", osmo_sock_get_name2(fd->fd), ret);
msgb_free(msg);
return -1;
}
@@ -670,13 +672,13 @@ static int mgcp_do_write(struct osmo_fd *fd, struct msgb *msg)
{
int ret;
- LOGP(DLMGCP, LOGL_DEBUG, "Sending msg to MGCP GW size: len=%u '%s'...\n",
- msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
+ LOGP(DLMGCP, LOGL_DEBUG, "Tx MGCP: %s: len=%u '%s'...\n",
+ osmo_sock_get_name2(fd->fd), msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
ret = write(fd->fd, msg->data, msg->len);
if (ret != msg->len)
- LOGP(DLMGCP, LOGL_ERROR, "Failed to Tx MGCP: %d='%s'; msg: len=%u '%s'...\n",
- errno, strerror(errno),
+ LOGP(DLMGCP, LOGL_ERROR, "Failed to Tx MGCP: %s: %d='%s'; msg: len=%u '%s'...\n",
+ osmo_sock_get_name2(fd->fd), errno, strerror(errno),
msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
return ret;
}
@@ -733,12 +735,12 @@ static int init_socket(struct mgcp_client *mgcp)
/* Choose a new port number to try next */
LOGP(DLMGCP, LOGL_NOTICE,
- "MGCPGW faild to bind to port %u, retrying with port %u -- check configuration!\n",
- mgcp->actual.local_port, mgcp->actual.local_port + 1);
+ "MGCPGW failed to bind to %s:%u, retrying with port %u\n",
+ mgcp->actual.local_addr, mgcp->actual.local_port, mgcp->actual.local_port + 1);
mgcp->actual.local_port++;
}
- LOGP(DLMGCP, LOGL_FATAL, "MGCPGW faild to find a port to bind on %i times.\n", i);
+ LOGP(DLMGCP, LOGL_FATAL, "MGCPGW failed to find a port to bind on %i times.\n", i);
return -EINVAL;
}
@@ -776,9 +778,7 @@ int mgcp_client_connect(struct mgcp_client *mgcp)
wq->read_cb = mgcp_do_read;
wq->write_cb = mgcp_do_write;
- LOGP(DLMGCP, LOGL_INFO, "MGCP GW connection: %s:%u -> %s:%u\n",
- mgcp->actual.local_addr, mgcp->actual.local_port,
- mgcp->actual.remote_addr, mgcp->actual.remote_port);
+ LOGP(DLMGCP, LOGL_INFO, "MGCP GW connection: %s\n", osmo_sock_get_name2(wq->bfd.fd));
return 0;
error_close_fd: