Merge "correct getLoggers to use __name__ in code"

This commit is contained in:
Jenkins 2014-08-15 16:47:46 +00:00 committed by Gerrit Code Review
commit 08529376f1
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ from neutron.plugins.vmware.nsxlib import router as routerlib
from neutron.plugins.vmware.nsxlib import secgroup as secgrouplib
from neutron.plugins.vmware.nsxlib import switch as switchlib
LOG = logging.getLogger("NeutronPlugin")
LOG = logging.getLogger(__name__)
NSX_NOSNAT_RULES_ORDER = 10
NSX_FLOATINGIP_NAT_RULES_ORDER = 224

View File

@ -28,7 +28,7 @@ from neutron.tests import base
from neutron.tests.unit import vmware
LOG = logging.getLogger("test_api_request_eventlet")
LOG = logging.getLogger(__name__)
REQUEST_TIMEOUT = 1