What is the method in python to print logs to the screen?

In Python, you can use the built-in logging module to print logs to the screen. Here is a simple example:

import logging

# 设置日志级别为DEBUG
logging.basicConfig(level=logging.DEBUG)

# 打印不同级别的日志
logging.debug("This is a debug message")
logging.info("This is an info message")
logging.warning("This is a warning message")
logging.error("This is an error message")
logging.critical("This is a critical message")

Running the above code will print different levels of logs on the screen. You can also use the logging.basicConfig() function to configure different log levels, formats, etc.

 

More tutorials

BroadcastReceiver Example Tutorial on Android(Opens in a new browser tab)

Tutorial on how to set up a Hibernate Tomcat JNDI DataSource.(Opens in a new browser tab)

QR code generator in Java using zxing.(Opens in a new browser tab)

Java thread ensuring Java code is thread-safe(Opens in a new browser tab)

Spring MVC HandlerInterceptorAdapter and HandlerInterceptor.(Opens in a new browser tab)

Primefaces’ Message, Messages, and Growl components(Opens in a new browser tab)

The program in Java for displaying “Hello World”(Opens in a new browser tab)

Assert Exception in JUnit 5 and JUnit 4(Opens in a new browser tab)

Java Tutorial for beginners(Opens in a new browser tab)

How to include items to a list in Python(Opens in a new browser tab)

Leave a Reply 0

Your email address will not be published. Required fields are marked *