NS: More INFO messages about what we actually transmit
diff --git a/openbsc/src/gprs/gprs_ns.c b/openbsc/src/gprs/gprs_ns.c
index a166956..e93bd43 100644
--- a/openbsc/src/gprs/gprs_ns.c
+++ b/openbsc/src/gprs/gprs_ns.c
@@ -207,6 +207,9 @@
 	if (!msg)
 		return -ENOMEM;
 
+	LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET (NSVCI=%u, cause=%s)\n",
+		nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
+
 	nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
 	nsh->pdu_type = NS_PDUT_RESET;
 
@@ -230,6 +233,9 @@
 	if (!msg)
 		return -ENOMEM;
 
+	LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS STATUS (NSVCI=%u, cause=%s)\n",
+		nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
+
 	nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
 	nsh->pdu_type = NS_PDUT_STATUS;
 
@@ -270,6 +276,9 @@
 	if (!msg)
 		return -ENOMEM;
 
+	LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS BLOCK (NSVCI=%u, cause=%s)\n",
+		nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
+
 	/* be conservative and mark it as blocked even now! */
 	nsvc->state |= NSE_S_BLOCKED;
 
@@ -284,6 +293,10 @@
 
 int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
 {
+
+	LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
+		nsvc->nsei, nsvc->nsvci);
+
 	return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
 }