Edit the lines relating to logging near the top of loadImData.py to;
if debug:
logger.basicConfig(level=logger.DEBUG, format='%(asctime)s log_level=%(levelname)s %(message)s',filename=os.path.join(dirname(__file__),'..','local','imDebugLog.log'),filemode='a')
else:
logger.basicConfig(level=logger.INFO, format='%(asctime)s log_level=%(levelname)s %(message)s',filename=os.path.join(dirname(__file__),'..','local','imAppLog.log'),filemode='a')
where the lines after if debug and else: are on a single line and not wrapped as above 🙂
A new version with a fix should hopefully be coming shortly, in the meantime this will fix it up.
... View more