summaryrefslogtreecommitdiffstats
path: root/nova/cloudpipe
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/cloudpipe
parentb3ade08a21d154109b8cd4c3074f3611670adb1e (diff)
downloadnova-c9ca372b0b9fe887dd3ac6bdb02514b5495a1917.tar.gz
nova-c9ca372b0b9fe887dd3ac6bdb02514b5495a1917.tar.xz
nova-c9ca372b0b9fe887dd3ac6bdb02514b5495a1917.zip
Standardize logging delaration and use
* Make modules use getLogger(__name__) and log to the result Change-Id: Ib6d69b4be140ec89affc86ed11e65e422d551df1
Diffstat (limited to 'nova/cloudpipe')
-rw-r--r--nova/cloudpipe/pipelib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/cloudpipe/pipelib.py b/nova/cloudpipe/pipelib.py
index 0530be32c..4e5f7d4ba 100644
--- a/nova/cloudpipe/pipelib.py
+++ b/nova/cloudpipe/pipelib.py
@@ -56,7 +56,7 @@ FLAGS = flags.FLAGS
FLAGS.register_opts(cloudpipe_opts)
-LOG = logging.getLogger('nova.cloudpipe')
+LOG = logging.getLogger(__name__)
class CloudPipe(object):