Updated error catch for deleteRow ConfigurationServiceImpl.java
authorMarcus Koontz <marcus.g.koontz@intel.com>
Tue, 9 Dec 2014 23:11:43 +0000 (15:11 -0800)
committerMarcus Koontz <marcus.g.koontz@intel.com>
Fri, 19 Dec 2014 03:52:01 +0000 (19:52 -0800)
Logged more specific information from caught error and updated
error message format to match best practices.

Change-Id: If43e49b0544a5efba85a71dc0d227eca627854b5
Signed-off-by: Marcus Koontz <marcus.g.koontz@intel.com>
plugin/src/main/java/org/opendaylight/ovsdb/plugin/impl/ConfigurationServiceImpl.java

index 3c3d53317027f6b4f8ce4635c875886155d28044..1671397fb157012f699a6a4c91e123f0ebc222a3 100644 (file)
@@ -347,7 +347,7 @@ public class ConfigurationServiceImpl implements IPluginInBridgeDomainConfigServ
                 }
             }
         } catch (InterruptedException | ExecutionException e) {
-            logger.error("Error in deleteRow()", e);
+            logger.error("Error in deleteRow() {} {}", node, tableName, e);
         }
 
         return new Status(StatusCode.SUCCESS);