Reduce the log level if TRex client is no connected 23/53323/1
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Thu, 8 Mar 2018 16:42:59 +0000 (16:42 +0000)
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Thu, 8 Mar 2018 16:44:04 +0000 (16:44 +0000)
If the TRex client is no connected, the testcase will write an exception
log that will be thrown to the CLI. There is no need to show the
traceback in the CLI in this case.

The log level is reduced to "error".

JIRA: YARDSTICK-1059

Change-Id: I22a52cedd6479f4cf692ba16a8415f7b8f574ab1
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
yardstick/network_services/vnf_generic/vnf/sample_vnf.py

index ad78774..6610ba7 100644 (file)
@@ -371,7 +371,7 @@ class ClientResourceHelper(ResourceHelper):
         try:
             return self.client.get_stats(*args, **kwargs)
         except STLError:
-            LOG.exception("TRex client not connected")
+            LOG.error('TRex client not connected')
             return {}
 
     def generate_samples(self, ports, key=None, default=None):