Skip to content

Commit

Permalink
chore: minor renaming of log file
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Jan 9, 2025
1 parent 144ad09 commit 0679e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aipipeline/projects/bio/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
logger.setLevel(logging.INFO)
# and log to file
now = datetime.now()
log_filename = f"predictor_{now:%Y%m%d}.log"
log_filename = f"process_bio_{now:%Y%m%d}.log"
handler = logging.FileHandler(log_filename, mode="w")
handler.setFormatter(formatter)
handler.setLevel(logging.DEBUG)
Expand Down

0 comments on commit 0679e1f

Please sign in to comment.