Merge "Support separate privsep logging levels" into stable/zed

This commit is contained in:
Zuul 2023-05-18 10:04:04 +00:00 committed by Gerrit Code Review
commit 8282b14889
2 changed files with 12 additions and 0 deletions

View File

@ -31,4 +31,5 @@ default = priv_context.PrivContext(
cfg_section='privsep_osbrick',
pypath=__name__ + '.default',
capabilities=capabilities,
logger_name=__name__,
)

View File

@ -0,0 +1,11 @@
---
features:
- |
Support separate privsep logging levels. Now services using os-brick can
have different log levels for the service and os-brick's privsep calls.
The service usually uses the default "oslo_privsep.daemon" name while
os-brick now uses "os_brick.privileged".
fixes:
- |
`Bug #1922052 <https://bugs.launchpad.net/nova/+bug/1922052>`_: Fixed
missing os-brick DEBUG logs on nova compute service.