Standardize logging delaration and use

* Make modules use getLogger(__name__) and log to the result

Change-Id: Ib6d69b4be140ec89affc86ed11e65e422d551df1
This commit is contained in:
Jason Kölker
2012-02-14 12:07:02 -06:00
parent da7e4147b6
commit 3fc6879894
39 changed files with 39 additions and 39 deletions

View File

@@ -35,7 +35,7 @@ from nova.virt.libvirt import utils as virtutils
flags.DECLARE('instances_path', 'nova.compute.manager')
FLAGS = flags.FLAGS
LOG = logging.getLogger('nova.tests.test_imagecache')
LOG = logging.getLogger(__name__)
class ImageCacheManagerTestCase(test.TestCase):