summaryrefslogtreecommitdiff
path: root/glance_store/common
diff options
context:
space:
mode:
authorwhoami-rajat <rajatdhasmana@gmail.com>2021-11-22 05:16:19 -0500
committerwhoami-rajat <rajatdhasmana@gmail.com>2021-11-22 05:16:54 -0500
commit5677ae3cba836f30cdd7e3ec3ede60dbd9db2aac (patch)
tree37879e8cdcc893058be36233192aed92c476dad4 /glance_store/common
parent395f792358d18b858b9c280e0896fb4d4bc3a38f (diff)
downloadglance_store-5677ae3cba836f30cdd7e3ec3ede60dbd9db2aac.tar.gz
nit: Correct debug log
Correct debug log when initializing _AttachmentStateManager. Change-Id: Ifa909a67c76b897f2ab4b1ee5926046bc7045d3d
Diffstat (limited to 'glance_store/common')
-rw-r--r--glance_store/common/attachment_state_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glance_store/common/attachment_state_manager.py b/glance_store/common/attachment_state_manager.py
index 187a24c..b069730 100644
--- a/glance_store/common/attachment_state_manager.py
+++ b/glance_store/common/attachment_state_manager.py
@@ -83,7 +83,7 @@ class _AttachmentStateManager(metaclass=AttachmentStateManagerMeta):
# Another thread might have initialised state while we were
# waiting
if self.state is None:
- LOG.debug('Initialising _HostMountState')
+ LOG.debug('Initialising _AttachmentStateManager')
self.state = _AttachmentState()
@contextlib.contextmanager