Re: Is there any way to capture sync_reasoner() output to txt?
Administrator
Hello,
If you call sync_reasoner() with "debug = 9", it will print the output on Standard Error. So you can redirect sys.stderr (probably with sys.stderr = io.StringIO()), and then analyze the results.