Merge "Ignore unhandled OMCI msgs"
diff --git a/core/omci.go b/core/omci.go
index 4b56895..8d891dc 100644
--- a/core/omci.go
+++ b/core/omci.go
@@ -70,7 +70,8 @@
 		case 9:
 			resp.Pkt = Get()
 		default:
-			logger.Debug("Omci msg type not handled: %d", msgType)
+			logger.Warn("Omci msg type not handled: %d", msgType)
+			continue
 		}
 
 		resp.Pkt[0] = byte(transactionId >> 8)