nat: Improve the log message in case we have SCCP data without a connection

Describe which kind of data we have and where it was coming from
as this makes debugging a bit easier.
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index 6485102..e82c1a6 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -767,7 +767,10 @@
 	}
 
 	if (!con_msc) {
-		LOGP(DNAT, LOGL_ERROR, "No connection found, dropping data.\n");
+		LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
+			bsc->cfg->nr,
+			parsed ? parsed->ipa_proto : -1,
+			parsed ? parsed->sccp_type : -1);
 		goto exit2;
 	}