Skip to content
Snippets Groups Projects
Commit 5d7d9473 authored by Shudong Zhou's avatar Shudong Zhou
Browse files

DeviceManager: don't log a debug message on every packet_in, use trace level

parent 36d0f5cf
No related branches found
No related tags found
No related merge requests found
......@@ -860,8 +860,8 @@ public class DeviceManagerImpl implements IDeviceManagerService, IOFMessageListe
match.loadFromPacket(pi.getPacketData(), pi.getInPort(), sw.getId());
// Add this packet-in to event history
evHistPktIn(match);
if (log.isDebugEnabled())
log.debug("Entering packet_in processing sw {}, port {}. {} --> {}, type {}",
if (log.isTraceEnabled())
log.trace("Entering packet_in processing sw {}, port {}. {} --> {}, type {}",
new Object[] { sw.getStringId(), pi.getInPort(),
HexString.toHexString(match.getDataLayerSource()),
HexString.toHexString(match.getDataLayerDestination()),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment