Skip to content

Commit

Permalink
Add back log message on successful variable computation
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Aug 1, 2024
1 parent 8800f8a commit f7f96a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions damnit/ctxsupport/ctxrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,8 @@ def execute(self, run_data, run_number, proposal, input_vars) -> 'Results':
except Exception:
log.error("Could not get data for %s", name, exc_info=True)
else:
t1 = time.perf_counter()
log.info("Computed %s in %.03f s", name, t1 - t0)
res[name] = data
return Results(res, self)

Expand Down

0 comments on commit f7f96a0

Please sign in to comment.