aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/__init__.py
diff options
context:
space:
mode:
authorKubi <jean.gaoliang@huawei.com>2017-02-13 05:10:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-02-13 05:10:41 +0000
commitd45d6aacdd769f07bfc2bad92be57a1c2ccf5d1f (patch)
tree5793b3f8ba4f24bd90878342d97db7155464c560 /yardstick/__init__.py
parentf7ee2a6dede65b4861ea78abaf15f9d9b11870dc (diff)
parent18db73c26a766e8ae0233c60a9fc2e372ee28428 (diff)
Merge "Push yardstick debug log into the artifacts"
Diffstat (limited to 'yardstick/__init__.py')
-rw-r--r--yardstick/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/yardstick/__init__.py b/yardstick/__init__.py
index 3ae915c18..fbbc101a9 100644
--- a/yardstick/__init__.py
+++ b/yardstick/__init__.py
@@ -13,12 +13,15 @@ import os
import sys
import yardstick.vTC.apexlake as apexlake
+from yardstick.common import constants
+from yardstick.common import utils as yardstick_utils
# Hack to be able to run apexlake unit tests
# without having to install apexlake.
sys.path.append(os.path.dirname(apexlake.__file__))
-LOG_FILE = '/tmp/yardstick.log'
+yardstick_utils.makedirs(constants.YARDSTICK_LOG_DIR)
+LOG_FILE = os.path.join(constants.YARDSTICK_LOG_DIR, 'yardstick.log')
LOG_FORMATTER = ('%(asctime)s '
'%(name)s %(filename)s:%(lineno)d '
'%(levelname)s %(message)s')