Skip to content

Commit

Permalink
Use abspath to print cbi.log location
Browse files Browse the repository at this point in the history
Signed-off-by: John Pennycook <john.pennycook@intel.com>
  • Loading branch information
Pennycook committed Sep 25, 2024
1 parent 296ea50 commit 6c055b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codebasin/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def main():
file_handler.setLevel(logging.INFO)
file_handler.setFormatter(formatter)
log.addHandler(file_handler)
log_path = os.path.realpath("cbi.log")
log_path = os.path.abspath("cbi.log")
print(f"Log file created at {log_path}")

log_level = max(1, logging.ERROR - 10 * (args.verbose - args.quiet))
Expand Down

0 comments on commit 6c055b3

Please sign in to comment.