Closed OllyButters closed 4 years ago
logging seems to need an explicit utf8 setting like:
logging.basicConfig(handlers=[logging.FileHandler(log_file, 'w', 'utf-8')], level=config.logging_loglevel)
Paths need looking at to be more windows like - get mangled paths like:
\Desktop\puma\puma-master\puma-master/data/alspac/abstract_raw.csv'
Fixed logging. Mixed path separators are not actually a problem.
logging seems to need an explicit utf8 setting like:
logging.basicConfig(handlers=[logging.FileHandler(log_file, 'w', 'utf-8')], level=config.logging_loglevel)