set oslo.cache and dogpile to INFO

devstack now sets up memcached for keystone by default. keystone
also highly recommends the use of memcached in a real deployment.

unfortunately, both oslo.cache and dogpile are very chatty, let's
set their default log level to INFO instead of DEBUG in an
attempt to reduce noise and log pollution.

Change-Id: I532f3cbd22075dfabf09e852d01a67757fdc8afa
This commit is contained in:
Steve Martinelli 2016-02-01 01:27:52 -05:00
parent b374806beb
commit a0f88f1c9c

View File

@ -27,7 +27,8 @@ DEFAULT_LOG_LEVELS = ['amqp=WARN', 'amqplib=WARN', 'boto=WARN',
'urllib3.util.retry=WARN',
'keystonemiddleware=WARN', 'routes.middleware=WARN',
'stevedore=WARN', 'taskflow=WARN',
'keystoneauth=WARN']
'keystoneauth=WARN', 'oslo.cache=INFO',
'dogpile.core.dogpile=INFO']
_IGNORE_MESSAGE = "This option is ignored if log_config_append is set."