Add logging configuration for iso8601 module
iso8601 module outputs log messages but it is not useful for users, so this commit assigns null log handler to iso8601 module. This change suppresses iso8601 log messages during unit tests. Also moves openstack_dashboard related logging config for unit test from horizon to openstack_dashboard. Change-Id: I01cf12688118e2137382b8dc7a050b3587749354 Closes-Bug: #1250554
This commit is contained in:
parent
7a51bc7ddd
commit
1f81be7e67
@ -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,
|
||||
|
@ -337,6 +337,10 @@ LOGGING = {
|
||||
'level': 'DEBUG',
|
||||
'propagate': False,
|
||||
},
|
||||
'iso8601': {
|
||||
'handlers': ['null'],
|
||||
'propagate': False,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -121,10 +121,34 @@ OPENSTACK_IMAGE_BACKEND = {
|
||||
]
|
||||
}
|
||||
|
||||
LOGGING['loggers']['openstack_dashboard'] = {
|
||||
'handlers': ['test'],
|
||||
'propagate': False,
|
||||
}
|
||||
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': {
|
||||
|
Loading…
x
Reference in New Issue
Block a user