Improves logging messages

This commit is contained in:
Sergi Delgado Segura
2020-03-30 12:45:39 +02:00
parent 33966e59e1
commit c0ada5f818

View File

@@ -216,7 +216,7 @@ class Cryptographer:
return key
except FileNotFoundError:
logger.error("Key file not found. Please check your settings")
logger.error("Key file not found at {}. Please check your settings".format(file_path))
return None
except IOError as e: