Log4j configuration and simple use

Source: Internet
Author: User

Log4j is a Java-based open-source log component. log4j has powerful functions. We can output log information to the console, files, and user interfaces, it can also output Event recorders and some system resident processes to the operating system. It is worth mentioning that log4j allows you to easily customize log formats and log levels, and helps developers fully control log information.

Http://logging.apache.org/log4j/2.x/

Package COM. mai. test; import Org. apache. log4j. logger; import Org. apache. log4j. propertyconfigurator; public class log4jtest {public static void main (string [] ARGs) {logger log = logger. getlogger (log4jtest. class); propertyconfigurator. configure ("src/log4j. properties "); log. debug ("Yes, debug"); log.info ("Yes, Info"); log. error ("Yes, error"); log. warn ("Yes, warn ");}}

Log4j configuration and simple use

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.