Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a function that logs into a file (using logging module) and also prints the same content on the console at the same time.

What I have is :

def printScreenAndLog(msg):
   log = logging.getLogger()
   log.info(msg)
   now = str(datetime.datetime.now())
   print now,"%s" % msg

def main():
   options, args = usage()
   log = logging.getLogger("CMDR")

   log.setLevel(logging.DEBUG)
   fh = logging.FileHandler('cmdr.log')
   fh.setLevel(logging.DEBUG)
   formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
   fh.setFormatter(formatter)
   log.addHandler(fh)

   printScreenAndLog("Testing")

if __name__ == "__main__":
   main()
share|improve this question

1 Answer

did you try to set the logging level to info instead of debug?
or use log.debug(msg) in your printScreenAndLog function?

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.