HC Test: create Vlan sub-interface using netconf
[csit.git] / resources / libraries / python / honeycomb / Netconf.py
index e3cdbe5..770af95 100644 (file)
@@ -154,14 +154,20 @@ class Netconf(object):
 
         return response
 
 
         return response
 
-    def send(self, message):
+    def send(self, message, **params):
         """Sends provided message through the channel.
 
         :param message: Message to be sent to Honeycomb.
         """Sends provided message through the channel.
 
         :param message: Message to be sent to Honeycomb.
+        :param params: Format the message string with these parameters.
         :type message: str
         :type message: str
+        :type params: dict
         """
 
         """
 
+        message = message.format(**params)
+
         if not message.endswith(self.delimiter):
             message += self.delimiter
 
         if not message.endswith(self.delimiter):
             message += self.delimiter
 
+        logger.debug(message)
+
         self.channel.send(message)
         self.channel.send(message)