summaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2017-01-11 07:55:14 -0500
committerMatthewLi <matthew.lijun@huawei.com>2017-01-11 08:08:48 -0500
commit3114be6f8c77962e27551645af1859c51a110600 (patch)
tree65d7affa8a8e627b369d8633ec63498f26660fdb /dashboard
parent0c57358d86d0a1d155b66e3af015be5be7e80e79 (diff)
dovetail tool: switch logging to proper usage
JIRA: DOVETAIL-178 Change-Id: Ica814d4ff634c9159e4ecca888b8cc0f6c16e624 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'dashboard')
-rwxr-xr-xdashboard/backend/dovetail/api/api.py4
-rwxr-xr-xdashboard/backend/dovetail/db/api.py4
-rwxr-xr-xdashboard/backend/dovetail/db/utils.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/dashboard/backend/dovetail/api/api.py b/dashboard/backend/dovetail/api/api.py
index 4fc97ebd..7839b893 100755
--- a/dashboard/backend/dovetail/api/api.py
+++ b/dashboard/backend/dovetail/api/api.py
@@ -104,7 +104,7 @@ def add_result():
data = _get_request_data()
ret_code = 200
json_object = json.loads(data)
- logging.debug('json_object:%s' % (json_object))
+ logging.debug('json_object:%s', (json_object))
if not db_api.store_result(**json_object):
ret_code = 500
resp = utils.make_json_response(
@@ -116,7 +116,7 @@ def add_result():
@app.route("/results/<test_id>", methods=['DELETE'])
def remove_results(test_id):
data = _get_request_data()
- logging.debug('data:%s' % data)
+ logging.debug('data:%s', data)
response = db_api.del_result(
test_id, **data
)
diff --git a/dashboard/backend/dovetail/db/api.py b/dashboard/backend/dovetail/db/api.py
index a522a481..631ed2a3 100755
--- a/dashboard/backend/dovetail/db/api.py
+++ b/dashboard/backend/dovetail/db/api.py
@@ -25,7 +25,7 @@ def store_result(exception_when_existing=True,
:param data: Dict describes test results.
"""
- logging.debug('store_result:%s' % kwargs)
+ logging.debug('store_result:%s', kwargs)
result = utils.add_db_object(
session, models.Result, exception_when_existing,
**kwargs)
@@ -38,7 +38,7 @@ def store_result(exception_when_existing=True,
def list_results(session=None, **filters):
"""Get all results
"""
- logging.debug('session:%s' % session)
+ logging.debug('session:%s', session)
results = utils.list_db_objects(
session, models.Result, **filters
)
diff --git a/dashboard/backend/dovetail/db/utils.py b/dashboard/backend/dovetail/db/utils.py
index 5e788a71..4bb0026d 100755
--- a/dashboard/backend/dovetail/db/utils.py
+++ b/dashboard/backend/dovetail/db/utils.py
@@ -47,7 +47,7 @@ def add_db_object(session, table, exception_when_existing=True,
arg_names, args)
)
db_keys = dict(zip(arg_names, args))
- logging.debug('db_keys:%s' % db_keys)
+ logging.debug('db_keys:%s', db_keys)
if db_keys:
db_object = session.query(table).filter_by(**db_keys).first()
else:
@@ -70,7 +70,7 @@ def add_db_object(session, table, exception_when_existing=True,
for key, value in kwargs.items():
setattr(db_object, key, value)
- logging.debug('db_object:%s' % db_object)
+ logging.debug('db_object:%s', db_object)
if new_object:
session.add(db_object)
session.flush()