X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2FBrokerFacade.xtend;h=9c0c3ac14c9eabb9757ac526b505822e573a0824;hb=ba470e5b912b7251110b6e7a1da583144a5b8fe8;hp=c57505829c5bde05dffbfda95ad8d21c3ac1ba26;hpb=7bea173bf1c3c27d5fa366b25a0f83879105c56d;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.xtend b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.xtend index c57505829c..9c0c3ac14c 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.xtend +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/BrokerFacade.xtend @@ -113,6 +113,7 @@ class BrokerFacade implements DataReader { def commitConfigurationDataDelete(InstanceIdentifier path) { checkPreconditions val transaction = dataService.beginTransaction; + LOG.info("Delete Configuration via Restconf: {}", path) transaction.removeConfigurationData(path) return transaction.commit } @@ -120,6 +121,7 @@ class BrokerFacade implements DataReader { def commitConfigurationDataDeleteBehindMountPoint(MountInstance mountPoint, InstanceIdentifier path) { checkPreconditions val transaction = mountPoint.beginTransaction; + LOG.info("Delete Configuration via Restconf: {}", path) transaction.removeConfigurationData(path) return transaction.commit }