More logs cleanup

Change-Id: I5129e833d648e871a6c9719caf145f4da477ee19
diff --git a/core/grpc_service.go b/core/grpc_service.go
index 9cd6fae..3981aed 100644
--- a/core/grpc_service.go
+++ b/core/grpc_service.go
@@ -111,7 +111,7 @@
 
 func (s *Server) OnuPacketOut(c context.Context, packet *openolt.OnuPacket) (*openolt.Empty, error) {
 	onu, _ := s.GetOnuByID(packet.OnuId)
-	utils.LoggerWithOnu(onu).Debug("OLT %d receives OnuPacketOut () to IF-ID:%d ONU-ID %d.", s.Olt.ID, packet.IntfId, packet.OnuId)
+	utils.LoggerWithOnu(onu).Debugf("OLT %d receives OnuPacketOut () to IF-ID:%d ONU-ID %d.", s.Olt.ID, packet.IntfId, packet.OnuId)
 	onuid := packet.OnuId
 	intfid := packet.IntfId
 	rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)