Rework logging/verbosity system #90

Merged
witten merged 12 commits from :master into master 2018-09-08 20:53:38 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bc7d123c36 - Show all commits

View File

@ -8,4 +8,4 @@ def test_verbosity_to_log_level_maps_known_verbosity_to_log_level():
def test_verbosity_to_log_level_maps_unknown_verbosity_to_warning_level():
assert module.verbosity_to_log_level('my pants') == logging.WARNING
assert module.verbosity_to_log_level('my pants') == logging.INFO

Note that the name of this test function is now incorrect!

Note that the name of this test function is now incorrect!
Outdated
Review

Done. Also added an assertion to the previous function to test that VERBOSTIY_LOTS maps to DEBUG.

Done. Also added an assertion to the previous function to test that `VERBOSTIY_LOTS` maps to `DEBUG`.