Module level loggers were introduced to gRPC Python in 06e1683
, but
missed configuring these, leading to 'No handler found for module'
errors. Using the root logger implicitly calls basicConfig() which does
the basic configuration for the logging system by creating a
StreamHandler with a default Formatter and adding it to the logger. But
this is not the case for module level loggers.
Fix this issue by explicitly calling logging.basicConfig().
pull/16378/head
parent
0a1d0d25a2
commit
a20e2073c1
13 changed files with 13 additions and 0 deletions
Loading…
Reference in new issue