Logging in PythonIn this tutorial, we will learn the fundamentals of the standard logging module. What is logging?Logging is a Python module in the standard library that provides the facility to work with the framework for releasing log messages from the Python programs. Logging is used to tracking events that occur when the software runs. This module is widely used by the developers when they work to logging. It is very important tool which used in software development, running, and debugging. Logging is beneficial to store the logging records. Suppose there is no logging record, and the program is interrupted during its execution, we will be unable to find the actual cause of the problem. Somehow, we detect the cause of the crash but it will consume a lot of time to resolve this. Using the logging, we can leave a trace of breadcrumbs so that if the problem happens in the program, we can find the cause of the problem easily. We can face many problems while running applications such as we suppose an integer, and we have been given a float, the service is under maintenance and many more. These problems are hard to determine and time-consuming. How Logging WorksThe logging is a powerful module used by the beginners as well as enterprises. This module provides a proficiency to organize different control handlers and a transfer log messages to these handlers. To releasing a log message, we need to import the logging module as follows. Now, we will call the logger to log messages that we want to see. The logging module offers the five levels that specify the severity of events. Each event contains the parallel methods that can be used to log events at the level of severity. Let’s understand the following events and their working.
The above levels are sufficient to handle any types of problems. These corresponding numerical values of the levels are given below.
The logging module offers many features. It consists of several constants, classes, and methods. The constants are represented by the all caps latter; the classes are represented by capital letters. The items with lowercase represent methods. Let’s have a look at the several logger objects offered by the module itself.
Let’s understand the following example. Example – Output: WARNING:root:The warning message is displaying ERROR:root:The error message is displaying CRITICAL:root:The critical message is displaying Explanation: As we can see in the above output, each message is displayed along with the root, which is the logging module name given to its default logger. The message and the level name are separated by a colon (:) and print the messages in default output format. We can notice that the debug() and info() message didn’t display messages because, by default, the log module logs the messages with a severity level of WARNING, ERROR and CRITICAL. Basic ConfigurationsThe main task of logging is to store the records events in a file. The logging module provides the basicConfig(**kwarg), used to configure the logging. It accepts some of the commonly used argument as follows.
We can set the level of log messages by using the level parameter as we want to record. We need to pass the one constant in the class, which would permit all logging calls. Let’s understand the following example. Example – Output: Similarly, we can log the message to a file instead of display on console, filename and filemode can be used in the basicConfig() function, and we can decide the format of the message using format attributes. Let’s understand the following example. Example – Output: Explanation: The above output will be displayed in the msg.log file instead of console. We opened the file in w, which means the file is opened in the “write mode”. If the basicConfig() is called multiple times, then each run of the program will rewrite the log file’s output. The basicConfig() function can be modified by passing the additional arguments (https://docs.python.org/3/library/logging.html#logging.basicConfig). Let’s understand the following example. Example – Output: 2020-09-05 13:17:39,204 This is a harmless debug Message 2020-09-05 13:17:39,205 This is just an information 2020-09-05 13:17:39,205 It is a Warning. Please make changes 2020-09-05 13:17:39,205 You are trying to divide by zero 2020-09-05 13:17:39,205 Internet is down Explanation: The above code will generate a file, and we can see the output while opening a file. Formatting the OutputA string passed in the program as a message to log can be modified according to our requirements. There are some basic elements in the given string and part of the Logrecord. Let’s understand the following example. Example – Output: 18472-WARNING-This is a Warning Message The format argument can accept a string with Logrecord attributes in any form as we require. Let’s understand the following example – Example – Output: 2020-09-02 20:12:06,288 - Admin logged in The %(asctime) attributes adds the time creation of the Logrecord. We can also customize the format using datefmt attributes, which provides the same function as the datetime module. Example – Output: 02-Sep-20 13:29:05 - Admin logged out Logging Variable DataSometimes, we want to include the dynamic information from the application in the log. The logging methods are accepted a string as an argument, and it is good practice to format a string with the variable data and passed to a log method. But instead of that, we can also use a format string for the message and appending the variable data as an argument. Let’s understand the following example – Output: ERROR:root: Peter Decosta raised an error Explanation: The arguments passed to the method would be convoluted as variable data in the message. We can use the f{string} to format the given string. It provides a short and easy way to handle the string. Example – Output: ERROR:root: Antonio Mino raised an error Capturing Stack TracesWe can capture the full stacks of traces in an application using the logging module. There is an exc_info parameter in the logging function; if we set it as True, it can capture the Exception information. Let’s understand the following example – Example – Output: ERROR:root:Exception occurred Traceback (most recent call last): File "C:/Users/DEVANSH SHARMA/PycharmProjects/Hello/loggingFile.py", line 224, in <module> c = a / b ZeroDivisionError: division by zero Explanation: If we don’t set true to exc_info, the output will not inform us about the exception. It would be hard to debug an error in thousand lines of code, if it displays only the following output. There is also other option to get complete information about the exception. The logging module provides the exception() method, which logs a message with ERROR and attaches the exception information. To use it, call the logging.exception() method same as calling logging.error(exc_info = True). Let’s understand the following example. Example – Output: ERROR:root:Exception occurred Traceback (most recent call last): File "C:/Users/DEVANSH SHARMA/PycharmProjects/Hello/loggingFile.py", line 224, in <module> c = a / b ZeroDivisionError: division by zero We can use any of one option in error(), debug(), or critical() methods to get information about the exception. Classes and FunctionsWe have seen so far the default logger called root. The logging module is used it whenever its functions are called such as logging.debug(), logging.error(), etc. We can also define own logger by creating an object of the Logger class. Here, we are defining the commonly used classes and functions. Below are the classes and functions defined in the logging module.
If we don’t have the message to format, the default is to use the raw message. The default format date format is. The following format is used to make the log message in the human -readable format. We generally work with the objects of the Logger class, which are created using the logging.getLogger(name) function. If the getLogger() method is called multiple times with the same name, it will return the reference of the same logger object. Let’s understand the following example: Example – Output: This is a warning message Explanation: We have created the own logger name first_logger, but unlike the root logger, the first_logger is not part of the output format. To display it, pass it into the configuration function. Then the output will look like as follows. Work With HandlersHandlers are generally used to configure logger and transmit the logs to the many places at a time. It sends the log messages to the standard output stream or a file over HTTP or on email. Let’s understand the following example of creating handlers. Example: Output: __main__ - WARNING - This is a warning message __main__ - ERROR - This is an error message Explanation: In the following program, we have created a custom logger named the logger_obj and created a LogRecord that stores the all record of the logging events and passed it to all the Handlers that it has: w_handlers and e_handlers. The w_handlers is a stream handler with the level WARNING. It accepts the log from the LogRecord to generate the output in the format string and print it to the screen. The e_handler is a file handler with the level ERROR. It disregards the LogRecord as its level WARNING. ConclusionThe logging module is flexible and easy to use. It is very useful for keeping track of the logging records and displaying the appropriate message to the user. It provides the flexibility to create custom log levels, handler classes, and many other useful methods. It also provides basic logging for small projects. In this tutorial, we have discussed all the essential concepts of the logging module. We have covered generate messages with different levels. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263595.html