Python logs based on the file size,

Source: Internet
Author: User

Python logs based on the file size,

The example in this article describes how to log by file size in python and share it with you for your reference. The specific method is as follows:

Import glob import logging. handlers LOG_FILENAME = 'logging _ rotatingfile_example.out '# Set up a specific logger with our desired output level my_logger = logging. getLogger ('mylogger') my_logger.setLevel (logging. DEBUG) # Add the log message handler to the logger handler = logging. handlers. rotatingFileHandler (LOG_FILENAME, maxBytes = 20, backupCount = 5,) my_logger.addHandler (handler) # Log some messages for I in range (20): my_logger.debug ('I = % d' % I) # See what files are created logfiles = glob. glob ('% s *' % LOG_FILENAME) for filename in logfiles: print filename

This instance can implement cyclic logging. When the first file reaches the maxBytes size, it is written to the second file.

I hope this article will help you with Python programming.




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.