Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clear contents of log_text after successfull backup #1626

Merged
merged 11 commits into from
May 18, 2023
2 changes: 2 additions & 0 deletions src/vorta/borg/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def process_result(self, result):
self.app.backup_progress_event.emit(self.tr('Backup finished with warnings. See logs for details.'))
else:
self.app.backup_progress_event.emit(self.tr('Backup finished.'))
self.app.backup_progress_event.emit(self.tr(''))
self.app.backup_log_event.emit('', {})
real-yfprojects marked this conversation as resolved.
Show resolved Hide resolved

real-yfprojects marked this conversation as resolved.
Show resolved Hide resolved
def progress_event(self, fmt):
self.app.backup_progress_event.emit(fmt)
Expand Down