My logging for my python code was working using:
import logging
logging.basicConfig(filename=logfile,level=logging.DEBUG)
logging.debug(‘This message should go to the log file’)
but once I add any one of the following lines, the logging no longer works:
from snappy import Product
from snappy import ProductData
from snappy import ProductIO
from snappy import ProductUtils
Any suggestions?
Thanks
john