Add log message for guest token file deletion

This commit is contained in:
JustAnotherArchivist
2022-02-26 19:32:55 +00:00
parent 2480b173f4
commit 3a92b5bf0d

View File

@@ -287,6 +287,7 @@ class _CLIGuestTokenManager(GuestTokenManager):
def reset(self):
super().reset()
with self._lock:
_logger.info(f'Deleting guest token file {self._file}')
try:
os.remove(self._file)
except FileNotFoundError: