Merge "Add logging configuration for iso8601 module" into stable/havana

This commit is contained in:
Jenkins 2013-11-28 05:12:33 +00:00 committed by Gerrit Code Review
commit 631ee65ca4
3 changed files with 32 additions and 20 deletions

View File

@ -150,22 +150,6 @@ LOGGING = {
'handlers': ['test'],
'propagate': False,
},
'novaclient': {
'handlers': ['test'],
'propagate': False,
},
'keystoneclient': {
'handlers': ['test'],
'propagate': False,
},
'glanceclient': {
'handlers': ['test'],
'propagate': False,
},
'neutronclient': {
'handlers': ['test'],
'propagate': False,
},
'nose.plugins.manager': {
'handlers': ['null'],
'propagate': False,

View File

@ -337,6 +337,10 @@ LOGGING = {
'level': 'DEBUG',
'propagate': False,
},
'iso8601': {
'handlers': ['null'],
'propagate': False,
},
}
}

View File

@ -121,10 +121,34 @@ OPENSTACK_IMAGE_BACKEND = {
]
}
LOGGING['loggers']['openstack_dashboard'] = {
LOGGING['loggers'].update(
{
'openstack_dashboard': {
'handlers': ['test'],
'propagate': False,
}
},
'novaclient': {
'handlers': ['test'],
'propagate': False,
},
'keystoneclient': {
'handlers': ['test'],
'propagate': False,
},
'glanceclient': {
'handlers': ['test'],
'propagate': False,
},
'neutronclient': {
'handlers': ['test'],
'propagate': False,
},
'iso8601': {
'handlers': ['null'],
'propagate': False,
},
}
)
SECURITY_GROUP_RULES = {
'all_tcp': {