Skip to content

Commit

Permalink
added test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorkowski committed May 4, 2024
1 parent c8713e4 commit fb7828b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions particula/tests/logging_setup_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ def test_setup_configures_logger():
# Assert
assert logger.name == expected_logger_name

logger.info("This is a test message.")
logger.debug("This is a debug message.")
logger.error("This is an error message.")
logger.warning("This is a warning message.")
logger.critical("This is a critical message.")
logger.exception("This is an exception message.")
logger.info("Logger Test: This is a test message.")
logger.debug("Logger Test: This is a debug message.")
logger.error("Logger Test: This is an error message.")
logger.warning("Logger Test: This is a warning message.")
logger.critical("Logger Test: This is a critical message.")
logger.exception("Logger Test: This is an exception message.")
assert True # if no exception is raised, all logging levels are working

0 comments on commit fb7828b

Please sign in to comment.