Before jumping into the example scripts, let me give you a quick overview of loggers, the backbone of Python logging. A logger is an object provided by Python's logging module that your application ...
親がdebugレベル、子がerrorレベルの場合にinfoのログが出力された場合の例 子はerrorなので、infoレベルは無視して出力しない 次に親に伝播 親は、debugレベルなので、infoレベルを出力する 結果 ...