Skip to content

Commit

Permalink
Merge pull request #160 from jihyungSong/master
Browse files Browse the repository at this point in the history
Add debug error info
  • Loading branch information
jihyungSong authored Jul 24, 2023
2 parents b293188 + 3fbcbe7 commit 97a8e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spaceone/inventory/manager/job_task_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def add_error(self, job_task_id, domain_id, error_code, msg, additional=None):
job_task_vo = self.get(job_task_id, domain_id)
job_task_vo.append('errors', error_info)
job_mgr.mark_error(job_task_vo.job_id, domain_id)
_LOGGER.debug(f'[add_error] {job_task_id}: {error_info}')
_LOGGER.error(f'[add_error] {job_task_id}: {error_info}', exc_info=True)

return job_task_vo

Expand Down

0 comments on commit 97a8e10

Please sign in to comment.