diff --git a/addons/account_facturx/models/account_move.py b/addons/account_facturx/models/account_move.py
index 7f509b42b693d22aea35ac49a13c7d879ed2a681..bc80f157aa4c0729966dd7dbb3b1d1076e829d77 100644
--- a/addons/account_facturx/models/account_move.py
+++ b/addons/account_facturx/models/account_move.py
@@ -299,7 +299,7 @@ class AccountMove(models.Model):
         try:
             tree = etree.fromstring(content)
         except Exception:
-            raise UserError(_('The xml file is badly formatted : {}').format(attachment.name))
+            _logger.exception('The xml file is badly formatted : {}'.format(attachment.name))
 
         for xml_type, check_func, decode_func in decoders:
             check_res = check_func(tree, attachment.name)
@@ -313,7 +313,7 @@ class AccountMove(models.Model):
         try:
             return invoice_ids
         except UnboundLocalError:
-            raise UserError(_('No decoder was found for the xml file: {}. The file is badly formatted, not supported or the decoder is not installed').format(attachment.name))
+            _logger.exception('No decoder was found for the xml file: {}. The file is badly formatted, not supported or the decoder is not installed'.format(attachment.name))
 
     def _remove_ocr_option(self):
         if 'extract_state' in self: