web-dev-qa-db-ja.com

ロギング階層vsルートロガー?

私のコードのどこかに私は次のようなものがあります:

logger = logging.getLogger('debug0.x')

私がそれを理解する方法では、これはonlyが以前に次のようなことをしたときに応答するはずです:

logging.basicConfig(filename='10Nov2010a.txt',level=logging.DEBUG, name='debug0')

namedebugとして定義されていることに注意してください。しかし、もしそうなら

logging.basicConfig(filename='10Nov2010a.txt',level=logging.DEBUG)

nameキーワードがない場合、上記で定義されたdebug0.xロガーが反応し、ログファイルに書き込みます。ロガーが指名された最初のケ​​ースでのみ反応すると考えていました。

よくわかりません。

40
reckoner

Python loggingモジュールは、ロガーを階層に編成します。すべてのロガーはルートロガーの子孫です。各ロガーはログメッセージをその親に渡します。

新しいロガーはgetLogger()関数で作成されます。関数呼び出しlogging.getLogger('debug0.x')は、それ自体がルートロガーの子である_debug0_の子であるロガーxを作成します。このロガーにログインすると、メッセージは親に渡され、親はメッセージをルートロガーに渡します。ルートロガーがbasicConfig()関数によってファイルにログを記録するように設定したので、メッセージはそこに到着します。

81
Sven Marnach

コードまたはドキュメントをチェックアウトした場合:

>>> print logging.basicConfig.__doc__

    Do basic configuration for the logging system.

    This function does nothing if the root logger already has handlers
    configured. ...............
    A number of optional keyword arguments may be specified, which can alter
    the default behaviour.

    filename  Specifies that a FileHandler be created, using the specified
              filename, rather than a StreamHandler.
    filemode  Specifies the mode to open the file, if filename is specified
              (if filemode is unspecified, it defaults to 'a').
    format    Use the specified format string for the handler.
    datefmt   Use the specified date/time format.
    level     Set the root logger level to the specified level.
    stream    Use the specified stream to initialize the StreamHandler. Note
              that this argument is incompatible with 'filename' - if both
              are present, 'stream' is ignored.

logging.basicConfigはname引数をまったく使用しません。ルートロガーを初期化します。getLoggerは "name"引数を取ります

>>> print logging.getLogger.__doc__

    Return a logger with the specified name, creating it if necessary.

    If no name is specified, return the root logger.
13
pyfunc