IPA_Emulation: Don't log IPAC_MSGT_ID_RESP as "Unknown/unsupported"

Change-Id: I6ea3855a1f3d1cba6ac173b0f9cf9052d5d028fc
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 3508091..c3cfe8d 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -342,6 +342,9 @@
 		case (IPAC_MSGT_ID_GET) {
 			f_ccm_tx(f_ccm_make_id_resp(ccm));
 		}
+		case (IPAC_MSGT_ID_RESP) {
+			log("IPA ID RESP: ", ccm.u.resp);
+		}
 		case else {
 			log("Unknown/unsupported IPA CCM message type", ccm);
 		}