9e30c25e37
* Fixes lp904305 * remove module level log functions (getLogger to rule them all) * Move specific Environment logging to the one place it is used * Wrap getLogger to return a logger wrapped in a NovaContextAdapter * Do not overwrite the root logger * save_and_reraise_exception logs via error for passing exc_info * Uses CommonConfigOptions for compatability across Openstack Projects * Prefers CommonConfigOptions over legacy options * Install a NullHandler on the root logger if configured by FLAGS * Include example logging config file to mimic Nova defaults Change-Id: Ie59c3f755c142e2b7dc3b94b4e82e142e157bfac
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2010 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
:mod:`nova` -- Cloud IaaS Platform
|
|
===================================
|
|
|
|
.. automodule:: nova
|
|
:platform: Unix
|
|
:synopsis: Infrastructure-as-a-Service Cloud platform.
|
|
.. moduleauthor:: Jesse Andrews <jesse@ansolabs.com>
|
|
.. moduleauthor:: Devin Carlen <devin.carlen@gmail.com>
|
|
.. moduleauthor:: Vishvananda Ishaya <vishvananda@gmail.com>
|
|
.. moduleauthor:: Joshua McKenty <joshua@cognition.ca>
|
|
.. moduleauthor:: Manish Singh <yosh@gimp.org>
|
|
.. moduleauthor:: Andy Smith <andy@anarkystic.com>
|
|
"""
|
|
|
|
import gettext
|
|
import logging
|
|
|
|
|
|
gettext.install('nova', unicode=1)
|
|
# NOTE(jkoelker) This configures the root logger if it is not already
|
|
# configured so messages from logging setup can be written
|
|
# to the console
|
|
logging.basicConfig(format='%(message)s')
|