Switch to MD-SAL APIs
[openflowplugin.git] / applications / forwardingrules-sync / src / main / java / org / opendaylight / openflowplugin / applications / frsync / util / SemaphoreKeeperGuavaImpl.java
index 9b485d5e89dbc1d1f35766ad10b989e8512098e9..d652aac3e6cbd1005c5e3e03f5839a7158ba4b1f 100644 (file)
@@ -48,7 +48,7 @@ public class SemaphoreKeeperGuavaImpl<K> implements SemaphoreKeeper<K> {
         try {
             guard.acquire();
         } catch (InterruptedException e) {
-            LOG.warn("Could not acquire guard for {}, {}", key, e);
+            LOG.warn("Could not acquire guard for {}", key, e);
             return null;
         }
         return guard;