Merge "Add example logging setting"

This commit is contained in:
Zuul 2021-08-19 07:17:45 +00:00 committed by Gerrit Code Review
commit 33c308d3aa

View File

@ -20,3 +20,17 @@ from django.conf import settings
settings.POLICY_FILES.update({
'load-balancer': 'octavia_policy.yaml',
})
# Sample
# settings.LOGGING['loggers'].update({
# 'openstack': {
# 'handlers': ['console'],
# 'level': 'DEBUG',
# 'propagate': False,
# }
# 'barbicanclient': {
# 'handlers': ['console'],
# 'level': 'DEBUG',
# 'propagate': False,
# }
# })