Stop double logging to the console

The code in nova for logging added an extra root handler to be
able to log messages to the console during log setup. This handler
was removed in the setup method. The common setup method no longer
removes this handler, so don't create it. Note that there may be
a small period before the logging setup is finished where messages
will not appear.

Fixes bug 1053512

Change-Id: I879360ecd60d607112b1210d7afd5860e9ccb295
(cherry picked from commit aed10b2c8b)
This commit is contained in:
Vishvananda Ishaya 2012-09-20 16:47:53 +00:00
parent 4e4c484fc4
commit 3f605d35b7
1 changed files with 0 additions and 5 deletions

View File

@ -32,11 +32,6 @@
"""
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')