Pybites Logo

Some logging practice

Level: Beginner (score: 2)

You are to flesh out the log_it() function so that it will log to any LOG LEVEL and with any message passed to it. You will need to create globalvariables for each of the log levels, since those will be imported into the tests for testing.

LOG LEVELS:

  • DEBUG
  • INFO
  • WARNING
  • ERROR
  • CRITICAL

By default, all log messages are sent to the root logger, but for this bite you will have to give it the name of pybites_logger. Here is a Python logging guide for reference.