fix bug
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Thu, 7 Jul 2011 18:37:37 +0000 (14:37 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Thu, 7 Jul 2011 18:37:37 +0000 (14:37 -0400)
sfa/util/sfalogging.py

index 199066d..f1ab177 100755 (executable)
@@ -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)