diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-05-21 15:53:24 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-05-21 15:53:24 +0000 |
| commit | 53583faac261f2272f81da2ee2efaff0e10bc400 (patch) | |
| tree | 19e1158c4a66557d0878e5193df73e59d282242e /nova/api | |
| parent | 0d4c0e7fbc8bdd0d9c9503b09cf4590b696daf60 (diff) | |
| parent | f51f387b8cb8058a8f5a0c486c256a7a4d79b37d (diff) | |
Merge "Cleanup LOG.getLoggers to use __name__"
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/contrib/extended_server_attributes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nova/api/openstack/compute/contrib/extended_server_attributes.py b/nova/api/openstack/compute/contrib/extended_server_attributes.py index 9b7d5f6db..2da5badc3 100644 --- a/nova/api/openstack/compute/contrib/extended_server_attributes.py +++ b/nova/api/openstack/compute/contrib/extended_server_attributes.py @@ -27,8 +27,7 @@ from nova import log as logging FLAGS = flags.FLAGS -LOG = logging.getLogger("nova.api.openstack.compute.contrib." - "extended_server_attributes") +LOG = logging.getLogger(__name__) authorize = extensions.soft_extension_authorizer('compute', 'extended_server_attributes') |
