web-dev-qa-db-ja.com

python loggingはすべてのログをフラッシュしますか?

標準モジュールloggingを使用してファイルにログを書き込むと、各ログは個別にディスクにフラッシュされますか?たとえば、次のコードはログを10回フラッシュしますか?

logging.basicConfig(level=logging.DEBUG, filename='debug.log')
    for i in xrange(10):
        logging.debug("test")

もしそうなら、それは遅くなりますか?

52
Vincent Xue

はい、呼び出しごとに出力をフラッシュします。これはStreamHandlerのソースコードで確認できます。

def flush(self):
    """
    Flushes the stream.
    """
    self.acquire()
    try:
        if self.stream and hasattr(self.stream, "flush"):
            self.stream.flush()
    finally:
        self.release()

def emit(self, record):
    """
    Emit a record.

    If a formatter is specified, it is used to format the record.
    The record is then written to the stream with a trailing newline.  If
    exception information is present, it is formatted using
    traceback.print_exception and appended to the stream.  If the stream
    has an 'encoding' attribute, it is used to determine how to do the
    output to the stream.
    """
    try:
        msg = self.format(record)
        stream = self.stream
        stream.write(msg)
        stream.write(self.terminator)
        self.flush()   # <---
    except (KeyboardInterrupt, SystemExit): #pragma: no cover
        raise
    except:
        self.handleError(record)

少なくともプロファイリングを行い、それがボトルネックであることを発見するまでは、ロギングのパフォーマンスについてはあまり気にしません。とにかく、Handlerを呼び出すたびにflushを実行しないemitサブクラスをいつでも作成できます(たとえ例外が悪い場合でも多くのログを失うリスクがありますが)発生/インタープリターがクラッシュします)。

55
Bakuriu