diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-07-21 18:34:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 18:34:39 +0200 |
commit | d8629e7b86b6fcaedc8b31de57dd95e85fe4fb04 (patch) | |
tree | 4fc0bb6430390920983d7b02c56fa68e48f21b84 /app/services | |
parent | c1d62c4c01900daaac58ccd53dc133d66d2a2e06 (diff) |
Add logging of S3-related errors (#16381)
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/backup_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/backup_service.rb b/app/services/backup_service.rb index 6a1575616..037f519d3 100644 --- a/app/services/backup_service.rb +++ b/app/services/backup_service.rb @@ -167,7 +167,7 @@ class BackupService < BaseService io.write(buffer) end end - rescue Errno::ENOENT, Seahorse::Client::NetworkingError - Rails.logger.warn "Could not backup file #{filename}: file not found" + rescue Errno::ENOENT, Seahorse::Client::NetworkingError => e + Rails.logger.warn "Could not backup file #{filename}: #{e}" end end |