Skip to content

Commit

Permalink
Increase log verbosity. (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
schlafly authored Sep 11, 2024
1 parent 88e615d commit cd507f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions romanisim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@
log = logging.getLogger(__name__)
logging.basicConfig(format='%(asctime)s %(levelname)-8s %(message)s',
datefmt='%Y-%m-%d %H:%M:%S', level=logging.INFO)
log.setLevel('INFO')
# doesn't feel like it should be necessary, but it seems we don't get some
# test log messages without setting setLevel('INFO') after configuring
# with the basicConfig.

__version__ = version(__name__)

0 comments on commit cd507f3

Please sign in to comment.