osmux: Mention where the data was coming from
diff --git a/openbsc/src/libmgcp/osmux.c b/openbsc/src/libmgcp/osmux.c
index 6d6870f..75abde8 100644
--- a/openbsc/src/libmgcp/osmux.c
+++ b/openbsc/src/libmgcp/osmux.c
@@ -284,8 +284,10 @@
 		goto out;
 
 	osmux_snprintf(buf, sizeof(buf), msg);
-	LOGP(DMGCP, LOGL_DEBUG, "received OSMUX message "
-				"from BSC (len=%d) %s\n", msg->len, buf);
+	LOGP(DMGCP, LOGL_DEBUG,
+		"received OSMUX message from BSC(%s:%d) (len=%d) %s\n",
+		inet_ntoa(addr.sin_addr), ntohs(addr.sin_port),
+		msg->len, buf);
 
 	while((osmuxh = osmux_xfrm_output_pull(msg)) != NULL) {
 		struct mgcp_endpoint *endp;