X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fclient%2FNetconfClientSessionNegotiator.java;h=3b280795fa94b87db8f4490273b8e2a4522e77ce;hp=83f49b2635a5d0699d2b31615fc3c20927d4f878;hb=829624c9e06a414f138a1e5e64c668cb06c1f46c;hpb=7b8c4f5a339df43483744a337fc10dfaa252a6f4 diff --git a/opendaylight/netconf/netconf-client/src/main/java/org/opendaylight/controller/netconf/client/NetconfClientSessionNegotiator.java b/opendaylight/netconf/netconf-client/src/main/java/org/opendaylight/controller/netconf/client/NetconfClientSessionNegotiator.java index 83f49b2635..3b280795fa 100644 --- a/opendaylight/netconf/netconf-client/src/main/java/org/opendaylight/controller/netconf/client/NetconfClientSessionNegotiator.java +++ b/opendaylight/netconf/netconf-client/src/main/java/org/opendaylight/controller/netconf/client/NetconfClientSessionNegotiator.java @@ -58,10 +58,10 @@ public class NetconfClientSessionNegotiator extends NetconfClientSession session = super.getSessionForHelloMessage(netconfMessage); if (shouldUseExi(netconfMessage.getDocument())){ - logger.info("Netconf session: {} should use exi.", session); + logger.debug("Netconf session: {} should use exi.", session); tryToStartExi(session); } else { - logger.info("Netconf session {} isn't capable using exi.", session); + logger.debug("Netconf session {} isn't capable using exi.", session); negotiationSuccessful(session); } }