Turn logging down from DEBUG in persister-logging.conf

All the configurations for logging were set to DEBUG, which
creates a large amount of output to the console (especially from
monasca_common.kafka_lib) which in turn was captured by the
devstack screen session for the python tempest gate tests and
causing trouble with logstash indexing.
Turn the default devstack logging to a more reasonable INFO.

Change-Id: I480e75f6254735f3221fcc02f96086b037256c85
Story: 2003911
This commit is contained in:
Joseph Davis 2018-09-28 16:22:54 -07:00
parent 3196c1986d
commit bb8c8fbec9
1 changed files with 5 additions and 5 deletions

View File

@ -8,27 +8,27 @@ keys = console, file
keys = generic
[logger_root]
level = DEBUG
level = INFO
formatter = default
handlers = console, file
[logger_kafka]
qualname = kafka
level = DEBUG
level = INFO
formatter = default
handlers = console, file
propagate = 0
[logger_influxdb]
qualname = influxdb
level = DEBUG
level = INFO
formatter = default
handlers = console, file
propagate = 0
[logger_cassandra]
qualname = cassandra
level = DEBUG
level = INFO
formatter = default
handlers = console, file
propagate = 0