more verbose logging in various places
diff --git a/src/context_map.c b/src/context_map.c
index cd6cd81..7cfc7e6 100644
--- a/src/context_map.c
+++ b/src/context_map.c
@@ -76,6 +76,9 @@
 		return NULL;
 	}
 
+	LOGP(DMAIN, LOGL_INFO, "Creating new Mapping RUA CTX %p/%u <-> SCU Conn ID %p/%u\n",
+		hnb, rua_ctx_id, cn_if_new, new_scu_conn_id);
+
 	/* alloate a new map entry */
 	map = talloc_zero(hnb, struct hnbgw_context_map);
 	map->state = MAP_S_NULL;
@@ -109,7 +112,7 @@
 	 * direction, as the RUA=SCCP=SUA connections are always
 	 * established from HNB towards CN. */
 	LOGP(DMAIN, LOGL_NOTICE, "Unable to resolve map for CN "
-		"connection ID %u\n", scu_conn_id);
+		"connection ID %p/%u\n", cn, scu_conn_id);
 	return NULL;
 }