fix: refs #6403 remove console log

This commit is contained in:
Pablo Natek 2024-07-18 08:57:32 +02:00
parent ae2ddcb8c7
commit e5e4a224b2
2 changed files with 0 additions and 2 deletions

View File

@ -37,7 +37,6 @@ module.exports = Self => {
});
const xmlString = response.data;
console.log('xmlString: ', xmlString);
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xmlString, 'text/xml');
const result = xmlDoc.getElementsByTagName('Mensaje')[0].textContent;

View File

@ -53,7 +53,6 @@ module.exports = Self => {
const deletedExpedition = await models.Expedition.destroyById(expeditionId);
deletedExpeditions.push(deletedExpedition);
} catch (e) {
console.log('e: ', e);
notDeletedExpeditions.push(expeditionId);
}
}