From c9ca372b0b9fe887dd3ac6bdb02514b5495a1917 Mon Sep 17 00:00:00 2001 From: Jason Kölker Date: Tue, 14 Feb 2012 12:07:02 -0600 Subject: Standardize logging delaration and use * Make modules use getLogger(__name__) and log to the result Change-Id: Ib6d69b4be140ec89affc86ed11e65e422d551df1 --- nova/testing/fake/rabbit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/testing') 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 = {} -- cgit