nat: Improve the log message and print the errno/strerror(errno)
diff --git a/openbsc/src/nat/bsc_mgcp_utils.c b/openbsc/src/nat/bsc_mgcp_utils.c
index 1397d0e..9e7c822 100644
--- a/openbsc/src/nat/bsc_mgcp_utils.c
+++ b/openbsc/src/nat/bsc_mgcp_utils.c
@@ -157,7 +157,8 @@
 		struct sockaddr_in sock;
 		socklen_t len = sizeof(sock);
 		if (getpeername(nat->mgcp_queue.bfd.fd, (struct sockaddr *) &sock, &len) != 0) {
-			LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...\n");
+			LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...%d/%s\n",
+			      errno, strerror(errno));
 		} else {
 			mgcp_endp->bts = sock.sin_addr;
 		}