From 0b2bad695322b52229d2c287df3ba6d4cb5d8360 Mon Sep 17 00:00:00 2001 From: Takashi Hagura Date: Sat, 17 Sep 2016 17:16:18 +0900 Subject: [PATCH] Fix sample configuration logging.yaml work in python3 --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index ec2c741..9cf0f7c 100644 --- a/README.rst +++ b/README.rst @@ -244,15 +244,15 @@ A sample configuration ``logging.yaml`` would be: tag: test.logging formatter: fluent_fmt level: DEBUG - null: + none: class: logging.NullHandler loggers: amqp: - handlers: [null] + handlers: [none] propagate: False conf: - handlers: [null] + handlers: [none] propagate: False '': # root logger handlers: [console, fluent]