Re: [python-tulip] Why asyncio does not raise up exception when using `logging.config.fileConfig`

2016-09-19 Thread hilo jack
In fact, my logger will not catch any exception. 1. When I configure the logging, *the exception is not logged* when the program terminates, and *the uncatched exception won't be printed on the screen* 2. When I don't configure the logging system,* the exception is still not log

Re: [python-tulip] Why asyncio does not raise up exception when using `logging.config.fileConfig`

2016-09-19 Thread Martin Richard
Hi, I think that when you configure the logging, the exception is logged when the program terminates as the exception was never retrieved explicitly. When you don't configure the logging system, the exception is still logged, but not printed as the logger is not told to do so. wait() returns a pa