tmp fix in logging issue with omci-sim
Change-Id: Iedb46ca40ca5df3aff455b7029c00668ae7dcbf5
diff --git a/omci_sim.go b/omci_sim.go
index 63b18af..b794cfd 100644
--- a/omci_sim.go
+++ b/omci_sim.go
@@ -17,7 +17,6 @@
package core
import "log"
-import logs "gerrit.opencord.org/voltha-bbsim/common/logger"
var logger = logs.DefaultLogger
@@ -26,7 +25,7 @@
transactionId, deviceId, msgType, class, instance, content, err := ParsePkt(request)
if err != nil {
- logger.Error("ONU {intfid:%d, onuid:%d} - Cannot parse omci msg", intfId, onuId)
+ log.Printf("ONU {intfid:%d, onuid:%d} - Cannot parse omci msg", intfId, onuId)
return resp, &OmciError{"Cannot parse omci msg"}
}