diff options
author | Dmitry Tantsur <dtantsur@protonmail.com> | 2021-08-24 20:01:19 +0200 |
---|---|---|
committer | Dmitry Tantsur <dtantsur@protonmail.com> | 2021-08-24 20:01:19 +0200 |
commit | 7748b154b0477e42cd0937c9f52cbed33e7b7c8e (patch) | |
tree | 081d346b670f167a3b68fce47fb5cb46b5adf69a /ironic/conf | |
parent | 067b0a271610388dbd3d069e3ab63996df882eae (diff) | |
download | ironic-7748b154b0477e42cd0937c9f52cbed33e7b7c8e.tar.gz |
Silence debug logging from oslo_policy
While it's not entirely useless, it's extremely verbose and account
for 2/3 of ironic-api logs even when keystone is disabled.
Change-Id: I991d2af7eb6987830a5fa449026f43ac7a09fcff
Diffstat (limited to 'ironic/conf')
-rw-r--r-- | ironic/conf/opts.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ironic/conf/opts.py b/ironic/conf/opts.py index 607dd8510..7576264ee 100644 --- a/ironic/conf/opts.py +++ b/ironic/conf/opts.py @@ -86,5 +86,7 @@ def update_opt_defaults(): 'keystonemiddleware.auth_token=INFO', 'keystoneauth.session=INFO', 'openstack=WARNING', + # Policy logging is not necessarily useless, but very verbose + 'oslo_policy=WARNING', ] ) |