BUG-3219: Fix debug arguments 87/20687/1
authorRobert Varga <rovarga@cisco.com>
Mon, 18 May 2015 16:11:04 +0000 (18:11 +0200)
committerRobert Varga <rovarga@cisco.com>
Mon, 18 May 2015 23:52:31 +0000 (01:52 +0200)
The LOG.debug() message specifies the first argument should be 'this',
but that argument is missing. Fix the inconsistency.

Change-Id: Ie9bbed4fa6974430457cb32fc6f0481948351e20
Signed-off-by: Robert Varga <rovarga@cisco.com>
openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/core/connection/OutboundQueueImpl.java

index 4f708004eb08420629ad09ee8dc24bcc0c19d74c..921b4290a43e952d9e7faa90ef5c52e75846e521 100644 (file)
@@ -188,7 +188,7 @@ final class OutboundQueueImpl implements OutboundQueue {
     }
 
     boolean isFlushed() {
-        LOG.debug("Check queue {} for completeness (offset {}, reserve {})", flushOffset, reserve);
+        LOG.debug("Check queue {} for completeness (offset {}, reserve {})", this, flushOffset, reserve);
         if (flushOffset < reserve) {
             return false;
         }