fix log message
Change-Id: Ia46b5ad2564bff37bf344938809c61960d1930c3
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -104,7 +104,7 @@ public final class DefaultOpenFlowPacketContext implements OpenFlowPacketContext | ... | @@ -104,7 +104,7 @@ public final class DefaultOpenFlowPacketContext implements OpenFlowPacketContext |
104 | } catch (BufferUnderflowException | NullPointerException | | 104 | } catch (BufferUnderflowException | NullPointerException | |
105 | DeserializationException e) { | 105 | DeserializationException e) { |
106 | Logger log = LoggerFactory.getLogger(getClass()); | 106 | Logger log = LoggerFactory.getLogger(getClass()); |
107 | - log.warn("packet deserialization problem : {}", e.getMessage()); | 107 | + log.error("packet deserialization problem : {}", e.getMessage()); |
108 | return null; | 108 | return null; |
109 | } | 109 | } |
110 | } | 110 | } | ... | ... |
-
Please register or login to post a comment