summaryrefslogtreecommitdiffstats
path: root/nova/testing
diff options
context:
space:
mode:
authorJason Kölker <jason@koelker.net>2012-02-14 12:07:02 -0600
committerJason Kölker <jason@koelker.net>2012-02-14 13:02:43 -0600
commitc9ca372b0b9fe887dd3ac6bdb02514b5495a1917 (patch)
tree82b1ab1e187c0f6f16963c80a26a758dd0eb4619 /nova/testing
parentb3ade08a21d154109b8cd4c3074f3611670adb1e (diff)
Standardize logging delaration and use
* Make modules use getLogger(__name__) and log to the result Change-Id: Ib6d69b4be140ec89affc86ed11e65e422d551df1
Diffstat (limited to 'nova/testing')
-rw-r--r--nova/testing/fake/rabbit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/testing/fake/rabbit.py b/nova/testing/fake/rabbit.py
index 0cb91bd25..316dc2509 100644
--- a/nova/testing/fake/rabbit.py
+++ b/nova/testing/fake/rabbit.py
@@ -26,7 +26,7 @@ from eventlet import greenthread
from nova import log as logging
-LOG = logging.getLogger("nova.testing.fake.rabbit")
+LOG = logging.getLogger(__name__)
EXCHANGES = {}