From f994ad60d48da729750f08b3202d73957026ca81 Mon Sep 17 00:00:00 2001 From: Hamdy Khader Date: Mon, 14 May 2018 12:29:56 +0300 Subject: [PATCH] Fix NVMET minor log message issues Change-Id: I32249afb29295344ac32e30a63a437e525b469d5 --- cinder/volume/targets/nvmet.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cinder/volume/targets/nvmet.py b/cinder/volume/targets/nvmet.py index fc4350415d1..58c1485dd00 100644 --- a/cinder/volume/targets/nvmet.py +++ b/cinder/volume/targets/nvmet.py @@ -60,8 +60,8 @@ class NVMET(nvmeof.NVMeOF): LOG.info('Added subsystem: %s', newly_added_subsystem) search_for_subsystem = newly_added_subsystem else: - LOG.info('Skip creating subsystem %s as ' - 'it already exists.', search_for_subsystem) + LOG.debug('Skip creating subsystem %s as ' + 'it already exists.', search_for_subsystem) return { 'location': self.get_nvmeof_location( search_for_subsystem, @@ -128,7 +128,7 @@ class NVMET(nvmeof.NVMeOF): nvmf_subsystems['subsystems'].append(subsystem_section) LOG.info( - 'Trying to load the following subsystems:%s', nvmf_subsystems) + 'Trying to load the following subsystems: %s', nvmf_subsystems) self._restore(nvmf_subsystems)