If I have my own logger+handler and not using BasicConfig… so like this…
chandler = logging.StreamHandler()
chandler.setFormatter(logging.Formatter('e%(levelname)s] %(asctime)s %(message)s'))
logger = logging.getLogger("my_custom_logs")
logger.setLevel(logging.DEBUG)
logger.addHandler(chandler)
I’m getting weirdness with client.uploads.upload_file_version where it hangs for 10mins, then the created version is blank. It’s not throwing any Exceptions and nothing lands in my logger
What’s the correct way to get debug logs from the BoxClient?