NFVBENCH-44 Use message when logging exception 15/46015/1
authorKerim Gokarslan <kgokarsl@cisco.com>
Thu, 19 Oct 2017 00:02:44 +0000 (17:02 -0700)
committerahothan <ahothan@cisco.com>
Fri, 20 Oct 2017 07:37:14 +0000 (00:37 -0700)
Change-Id: I4469d4738aa8bd37cc8bb9184fd73b82291e2c03
Signed-off-by: Kerim Gokarslan <kgokarsl@cisco.com>
nfvbench/nfvbenchd.py

index 4772700..76906c5 100644 (file)
@@ -16,7 +16,6 @@
 
 import json
 import Queue
-import traceback
 import uuid
 
 from flask import Flask
@@ -236,10 +235,8 @@ class WebSocketIoServer(object):
                         self.fluent_logger.start_new_run()
                     results = self.nfvbench_runner.run(config, config)
             except Exception as exc:
-                print 'NFVbench runner exception:'
-                traceback.print_exc()
                 results = result_json(STATUS_ERROR, str(exc))
-                LOG.exception()
+                LOG.exception('NFVbench runner exception:')
 
             if Ctx.request_from_socketio:
                 socketio.emit('run_end', results)