Add log entry upon exporting container

Quite a salient moment in the log. According to our log levels definitions this must be info since it's the direct result of a user interaction.
This commit is contained in:
Ghostkeeper 2021-01-06 14:11:15 +01:00
parent ba9e10cfd8
commit 0788df4797
No known key found for this signature in database
GPG key ID: D2A8871EE34EC59A

View file

@ -221,6 +221,7 @@ class ContainerManager(QObject):
except OSError:
return {"status": "error", "message": "Unable to write to this location.", "path": file_url}
Logger.info("Successfully exported container to {path}".format(path = file_url))
return {"status": "success", "message": "Successfully exported container", "path": file_url}
@pyqtSlot(QUrl, result = "QVariantMap")