Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am going to develop a customized logger program for my Python application. In this logger program I used StreamHandler and file handler as shown below. I called logger program (get_configured_logger) in my application multiple no of times. It will make buffer memory become full As per Ref tutorial so:

I decided to add memory handler and BufferingHandler to my application which flush buffed memory (to flush memory for every few sec). (or) I like to log only last executed statements (Eg: WARNING, ERROR, INFO, etc.) to log file or console (Just before closing the application). Please help me to add this functionality to below code or please advice me any other good solution for such kind.

import logging, logging.handlers
from logging import StreamHandler, Formatter
class A:
    def get_configured_logger(self,name):
        logger = logging.getLogger(name)
        if (len(logger.handlers) == 0):                
            FORMAT = "%(process)s %(thread)s:-(asctime)s - %(name)s - %(levelname)s"
            formatter = logging.Formatter(fmt=FORMAT)                                 
            handler = logging.StreamHandler()
            handler.setFormatter(formatter)
            logger.addHandler(handler)
            logger.setLevel(logging.DEBUG)        
        return logger

if __name__=="__main__":
    obj=A()
    logger = obj.get_configured_logger("DEMO")
    logger.debug("TEST")
share|improve this question
Re-tagged: this is a generic Python logging question, not specific for any Python implementation or version. – Pedro Romano Oct 21 '12 at 9:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.