Skip to content

Commit

Permalink
feat(logging.py): Added term output and seperate basic evolutionary o…
Browse files Browse the repository at this point in the history
…utput
  • Loading branch information
Emily Boudreaux committed Jun 12, 2024
1 parent 0e22315 commit 63f5267
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/CoolDwarf/utils/misc/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,15 @@ def setup_logging(debug: bool = False):
'standard': {
'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s',
},
'term': {
'format': '%(levelname)s: %(message)s',
}
},
'handlers': {
'console': {
'class': 'logging.StreamHandler',
'level': 30,
'formatter': 'standard',
'formatter': 'term',
'stream': 'ext://sys.stdout',
},
'file_all_except_custom': {
Expand Down

0 comments on commit 63f5267

Please sign in to comment.