From: Sean McGinnis Date: Tue, 12 May 2015 13:52:52 +0000 (-0500) Subject: Logging not using oslo.i18n guidelines (openstack) X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=4f52027f7f5abc493742821ade935e2949269f9d;p=openstack-build%2Fcinder-build.git Logging not using oslo.i18n guidelines (openstack) Multi-patch set for easier chunks. This one addresses the openstack cinder directory. That directory is synced from oslo, so no changes made. Translation markers are being used, so this just removes the hacking check exclusion of that directory. Some cleanup of a couple files are also included in this patch for other directories that had been previously covered. There have been quite a few instances found where the i18n guidelines are not being followed. I believe this has helped lead to some of the confusion around how to correctly do this. Other developers see this code and assume it is an example of the correct usage. This patch attempts to clean up most of those violations in the existing codebase to hopefully help avoid some of that confusion in reviews. Some issues address: * Correct log translation markers for different log levels * Passing format values as arguments to call, not preformatting * Not forcing translation via six.text_type and others Guidelines can be found here: http://docs.openstack.org/developer/oslo.i18n/guidelines.html Hacking checks will not be able to identify all violations of the guidelines, but it could be useful for catching obvious one such as LOG.info("No markers!"). Change-Id: If58a29c179e79e0b99e9da1d9a2ff1bc9c7b09e1 Closes-bug: 1433216 Closes-bug: 1431256 --- diff --git a/cinder/hacking/checks.py b/cinder/hacking/checks.py index a860c7ce9..c0930c17c 100644 --- a/cinder/hacking/checks.py +++ b/cinder/hacking/checks.py @@ -211,14 +211,6 @@ def check_assert_called_once(logical_line, filename): def validate_log_translations(logical_line, filename): - # TODO(smcginnis): The following is temporary as a series - # of patches are done to address these issues. It should be - # removed completely when bug 1433216 is closed. - ignore_dirs = ["cinder/openstack"] - for directory in ignore_dirs: - if directory in filename: - return - # Translations are not required in the test directory. # This will not catch all instances of violations, just direct # misuse of the form LOG.info('Message'). diff --git a/cinder/volume/drivers/eqlx.py b/cinder/volume/drivers/eqlx.py index 36c2b1afd..3a5843ea5 100644 --- a/cinder/volume/drivers/eqlx.py +++ b/cinder/volume/drivers/eqlx.py @@ -245,8 +245,8 @@ class DellEQLSanISCSIDriver(san.SanISCSIDriver): return self._ssh_execute( ssh, command, timeout=self.configuration.eqlx_cli_timeout) - except Exception as e: - LOG.exception(e) + except Exception: + LOG.exception(_LE('Error running command.')) greenthread.sleep(random.randint(20, 500) / 100.0) msg = (_("SSH Command failed after '%(total_attempts)r' " "attempts : '%(command)s'") % diff --git a/cinder/volume/drivers/netapp/eseries/host_mapper.py b/cinder/volume/drivers/netapp/eseries/host_mapper.py index bb66c3c91..b6170c30a 100644 --- a/cinder/volume/drivers/netapp/eseries/host_mapper.py +++ b/cinder/volume/drivers/netapp/eseries/host_mapper.py @@ -33,7 +33,7 @@ LOG = logging.getLogger(__name__) def map_volume_to_single_host(client, volume, eseries_vol, host, vol_map): """Maps the e-series volume to host with initiator.""" - LOG.debug("Attempting to map volume %s to single host." % volume['id']) + LOG.debug("Attempting to map volume %s to single host.", volume['id']) # If volume is not mapped on the backend, map directly to host if not vol_map: @@ -56,8 +56,8 @@ def map_volume_to_single_host(client, volume, eseries_vol, host, # Volume is mapped to the multiattach host group if vol_map.get('mapRef') == multiattach_cluster_ref: - LOG.debug("Volume %s is mapped to multiattach host group." - % volume['id']) + LOG.debug("Volume %s is mapped to multiattach host group.", + volume['id']) # If volume is not currently attached according to Cinder, it is # safe to delete the mapping @@ -84,7 +84,7 @@ def map_volume_to_multiple_hosts(client, volume, eseries_vol, target_host, mapping): """Maps the e-series volume to multiattach host group.""" - LOG.debug("Attempting to map volume %s to multiple hosts." % volume['id']) + LOG.debug("Attempting to map volume %s to multiple hosts.", volume['id']) # If volume is already mapped to desired host, return the mapping if mapping['mapRef'] == target_host['hostRef']: