Compare commits

...

1 Commits

Author SHA1 Message Date
Pablo Natek e5e4a224b2 fix: refs #6403 remove console log 2024-07-18 08:57:32 +02:00
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);
}
}