From 95d75ac9ec01b597be983b2aeb8e1f7f619d8d04 Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Tue, 1 Mar 2016 10:44:52 -0500 Subject: [PATCH] Move replication volume manager warnings to info These two messages are printing at the warning level when starting c-vol. Since these don't seem to be something that demands attention, they should be logged at a lower level. Change-Id: I3db6ed3956348895b3534cdc9f3f72bb4c878aca --- cinder/volume/manager.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cinder/volume/manager.py b/cinder/volume/manager.py index 2dbb6394f..207be480e 100644 --- a/cinder/volume/manager.py +++ b/cinder/volume/manager.py @@ -250,9 +250,9 @@ class VolumeManager(manager.SchedulerDependentManager): CONF.volume_topic) except exception.ServiceNotFound: # NOTE(jdg): This is to solve problems with unit tests - LOG.warning(_LW("Service not found for updating " - "active_backend_id, assuming default" - "for driver init.")) + LOG.info(_LI("Service not found for updating " + "active_backend_id, assuming default " + "for driver init.")) else: curr_active_backend_id = service.active_backend_id @@ -508,8 +508,8 @@ class VolumeManager(manager.SchedulerDependentManager): CONF.volume_topic) except exception.ServiceNotFound: # FIXME(jdg): no idea what we'd do if we hit this case - LOG.warning(_LW("Service not found for updating " - "replication_status.")) + LOG.info(_LI("Service not found for updating " + "replication_status.")) else: if service.replication_status == ( fields.ReplicationStatus.FAILED_OVER): -- 2.45.2