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 1b5ac0b767
commit c622ffbc6a
3 changed files with 3 additions and 3 deletions
nova/virt/baremetal

@ -23,7 +23,7 @@ from nova.virt.baremetal import nodes
FLAGS = flags.FLAGS
LOG = logging.getLogger('nova.virt.baremetal.dom')
LOG = logging.getLogger(__name__)
def read_domains(fname):

@ -54,7 +54,7 @@ from nova.virt.libvirt import utils as libvirt_utils
Template = None
LOG = logging.getLogger('nova.virt.baremetal.proxy')
LOG = logging.getLogger(__name__)
FLAGS = flags.FLAGS

@ -43,7 +43,7 @@ tilera_opts = [
FLAGS.register_opts(tilera_opts)
LOG = logging.getLogger('nova.virt.tilera')
LOG = logging.getLogger(__name__)
def get_baremetal_nodes():