Re: logging to two files
Tor Erik Sønvisen wrote: > Hi > > Have the following code: > import logging > > logging.basicConfig(level = logging.DEBUG, > format = '[%(levelname)-8s %(asctime)s] > %(message)s', > filename = 'rfs.log', >
Re: logging to two files
Tor Erik Sønvisen wrote: Hi Have the following code: import logging logging.basicConfig(level = logging.DEBUG, format = '[%(levelname)-8s %(asctime)s] %(message)s', filename = 'rfs.log', filemode = 'w') When u