Remove unnecessary sw-update REST API logs

Reducing the level of some recently added sw-update REST API
logs from debug to verbose. With the default log settings in
the VIM, these logs were coming out once per minute, which
clutters the VIM log file.

Change-Id: I8c96acc7e5b69b06b4f4694638b653c8a81ed627
Story: 2004515
Task: 40740
Signed-off-by: Bart Wensley <barton.wensley@windriver.com>
This commit is contained in:
Bart Wensley 2020-08-25 07:57:52 -05:00
parent 8e266832a9
commit 9001354b81
2 changed files with 3 additions and 3 deletions

View File

@ -2384,7 +2384,7 @@ class NFVIInfrastructureAPI(nfvi.api.v1.NFVIInfrastructureAPI):
Software update Rest-API GET handler callback
"""
DLOG.debug("Sw-update rest-api get path: %s." % request_dispatch.path)
DLOG.verbose("Sw-update rest-api get path: %s." % request_dispatch.path)
http_payload = None
http_response = httplib.OK

View File

@ -130,8 +130,8 @@ def _nfvi_sw_update_get_callback():
else:
in_progress = False
DLOG.debug("Software update type=%s, in_progress=%s."
% (sw_update_type, in_progress))
DLOG.verbose("Software update type=%s, in_progress=%s."
% (sw_update_type, in_progress))
return sw_update_type, in_progress