April 2017
Beginner to intermediate
312 pages
7h 23m
English
This is a topic that is going to be useful for the next two chapters. Logging (https://docs.python.org/3/library/logging.html) helps with troubleshooting a problem. It helps with determining the root cause of a problem by tracing back through the sequence of events logged by the application. While we will be making extensive use of logging in the next two chapters, let's review logging using a simple application. In order to review logging, let's review it by making a POST request:
logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s', filename='log_file.log', level=logging.INFO)
While initializing the logging class, we need to specify ...
Read now
Unlock full access