From: Tony Mack Date: Thu, 7 Jul 2011 18:37:37 +0000 (-0400) Subject: fix bug X-Git-Tag: sfa-1.0-27~14 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ebd4fa3bab6d00966b03dd7e602d5169625998fd;p=sfa.git fix bug --- diff --git a/sfa/util/sfalogging.py b/sfa/util/sfalogging.py index 199066d0..f1ab1778 100755 --- a/sfa/util/sfalogging.py +++ b/sfa/util/sfalogging.py @@ -36,7 +36,8 @@ class _SfaLogger: if os.path.exists(tmplogfile) and not os.access(tmplogfile,os.W_OK): loggername = loggername + "-console" handler = logging.StreamHandler() - handler=logging.handlers.RotatingFileHandler(tmplogfile,maxBytes=1000000, backupCount=5) + else: + handler=logging.handlers.RotatingFileHandler(tmplogfile,maxBytes=1000000, backupCount=5) handler.setFormatter(logging.Formatter("%(asctime)s - %(levelname)s - %(message)s")) self.logger=logging.getLogger(loggername) self.logger.setLevel(level)