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
This commit is contained in:
Vishvananda Ishaya 2012-09-20 16:47:53 +00:00
parent a5dc49c1e2
commit aed10b2c8b
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')