ipa-proxy: Remove printf debugging.
diff --git a/openbsc/src/ipaccess/ipaccess-proxy.c b/openbsc/src/ipaccess/ipaccess-proxy.c
index 3e1bcdc..0310749 100644
--- a/openbsc/src/ipaccess/ipaccess-proxy.c
+++ b/openbsc/src/ipaccess/ipaccess-proxy.c
@@ -871,7 +871,6 @@
 	if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
 	    msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
 	    msg->l2h[18] == 0xf5 && msg->l2h[19] == 0xf2) {
-		printf("found GPRS NSVC SET foo...\n");
 		nsvci = &msg->l2h[23];
 		ipbc->gprs_orig_port =  *(u_int16_t *)(nsvci+8);
 		ipbc->gprs_orig_ip = *(u_int32_t *)(nsvci+10);
@@ -880,7 +879,6 @@
 	} else if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
 	    msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
 	    msg->l2h[18] == 0xf6 && msg->l2h[19] == 0xf2) {
-		printf("found GPRS NSVC SET ACK...\n");
 		nsvci = &msg->l2h[23];
 		*(u_int16_t *)(nsvci+8) = ipbc->gprs_orig_port;
 		*(u_int32_t *)(nsvci+10) = ipbc->gprs_orig_ip;