Where does Python root logger store a log?
That call does not store anything. It merely creates a logger object which can be bound and configured however you would like. So if in your Python code, you were to add logging.basicConfig(level=logging.WARNING) All warnings and errors would be logged to the standard output (that’s what basicConfig does), including the calls that Freebase makes. If … Read more