diff --git a/attachment_azure/models/ir_attachment.py b/attachment_azure/models/ir_attachment.py index ee0741f..9bddf0f 100644 --- a/attachment_azure/models/ir_attachment.py +++ b/attachment_azure/models/ir_attachment.py @@ -177,8 +177,8 @@ class IrAttachment(models.Model): try: blob_client.upload_blob(file, blob_type="BlockBlob") except ResourceExistsError: - _logger.exception( - "Trying to re create an existing resource %s" % filename + _logger.info( + "Resource already exists, skipping upload for %s", filename ) except HttpResponseError as error: # log verbose error from azure, return short message for user