Use error instead of warning to log mount exc

Gluster's driver uses warning to log mount exceptions. This patch
replaces that warning with an error message.

Change-Id: I54a10ec8abf460ca9ff7bb009b8d702cfad0fed0
Closes-Bug: #1317573
This commit is contained in:
Flavio Percoco 2014-05-24 10:12:36 +02:00
parent 6168d361cf
commit a058e90c5e
1 changed files with 1 additions and 1 deletions

View File

@ -1040,7 +1040,7 @@ class GlusterfsDriver(nfs.RemoteFsDriver):
self._ensure_share_mounted(share)
self._mounted_shares.append(share)
except Exception as exc:
LOG.warning(_('Exception during mounting %s') % (exc,))
LOG.error(_('Exception during mounting %s') % (exc,))
LOG.debug(_('Available shares: %s') % self._mounted_shares)