Skip to content

Commit

Permalink
added debug traces to nglint tool
Browse files Browse the repository at this point in the history
  • Loading branch information
godfryd committed Feb 26, 2023
1 parent fe40223 commit 1027fb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agent/kraken/agent/kraken_nglint.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def run_analysis(step, report_issue=None):


result = json.loads(out)
for issue in result:
for idx, issue in enumerate(result):
log.info('issue %d: %s', idx, issue)
if repo_parent:
filepath = issue['name'].replace(repo_parent, '')
else:
Expand Down

0 comments on commit 1027fb2

Please sign in to comment.