Remove bad INFO log "Starting Octavia API server"

This log is also display for health_manager and house_keeping service.
Api service already display "Starting API server on..." in INFO level.

Change-Id: I0a3ff91b556accdfadbad797488d17ae7a95d85b
This commit is contained in:
Bertrand Lallau 2015-09-11 22:24:18 +02:00
parent fd0301a5a7
commit 068862dc72
1 changed files with 0 additions and 2 deletions

View File

@ -16,7 +16,6 @@ from oslo_config import cfg
from oslo_log import log
from octavia.common import config
from octavia.i18n import _LI
LOG = log.getLogger(__name__)
@ -25,6 +24,5 @@ def prepare_service(argv=None):
"""Sets global config from config file and sets up logging."""
argv = argv or []
config.init(argv[1:])
LOG.info(_LI('Starting Octavia API server'))
log.set_defaults()
config.setup_logging(cfg.CONF)