X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fimpl%2FNotificationBrokerImpl.xtend;h=a3c8c5f232b0b6e7daae0350880eca7e790985a5;hb=dad78e1fc8a7c67fa4b88cf09d6a952443462feb;hp=b0939a043f68c72f7f994fa538a005d4942f08ea;hpb=54bed4dd6dfbada9a8e2ddf70ca84952aec3f55a;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationBrokerImpl.xtend b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationBrokerImpl.xtend index b0939a043f..a3c8c5f232 100644 --- a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationBrokerImpl.xtend +++ b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/impl/NotificationBrokerImpl.xtend @@ -175,6 +175,7 @@ class NotifyTask implements Callable { private static val log = LoggerFactory.getLogger(NotifyTask); + @SuppressWarnings("rawtypes") val NotificationListener listener; val Notification notification; @@ -184,13 +185,13 @@ class NotifyTask implements Callable { if(log.isDebugEnabled){ log.debug("Delivering notification {} to {}",notification,listener); } else { - log.info("Delivering notification {} to {}",notification.class.name,listener); + log.trace("Delivering notification {} to {}",notification.class.name,listener); } listener.onNotification(notification); if(log.isDebugEnabled){ log.debug("Notification delivered {} to {}",notification,listener); } else { - log.info("Notification delivered {} to {}",notification.class.name,listener); + log.trace("Notification delivered {} to {}",notification.class.name,listener); } } catch (Exception e) { log.error("Unhandled exception thrown by listener: {}", listener, e);