Disable neutron DEBUG logs

We are retrieving ALL neutron objects to check quotas. This could
lead to logs flooding.

Ideally quotas usage check should be done on neutron side, but it
looks there is no way to do that. Horizon retrieves all neutron
objects too.

So, just disabling DEBUG for neutron client.

Change-Id: Ic5f28c76e5d1a628e0323efa8fe3980577ca37a5
Closes-Bug: #1459794
This commit is contained in:
Andrew Lazarev 2015-06-02 14:00:31 -07:00
parent aed6493f60
commit cdaae0d680

View File

@ -113,6 +113,7 @@ log.set_defaults(default_log_levels=[
'requests=WARN', 'requests=WARN',
'iso8601=WARN', 'iso8601=WARN',
'oslo_messaging=INFO', 'oslo_messaging=INFO',
'neutronclient=INFO',
]) ])