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:
parent
3196c1986d
commit
bb8c8fbec9
@ -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
|
||||
@ -47,4 +47,4 @@ formatter = generic
|
||||
args = ('/var/log/monasca/persister/persister.log', 'a', 104857600, 5)
|
||||
|
||||
[formatter_generic]
|
||||
format = %(asctime)s %(levelname)s [%(name)s][%(threadName)s] %(message)s
|
||||
format = %(asctime)s %(levelname)s [%(name)s][%(threadName)s] %(message)s
|
||||
|
Loading…
Reference in New Issue
Block a user