Skip to content

Commit

Permalink
ampliffyBidAdapter.js: remove linter exceptions (#11666)
Browse files Browse the repository at this point in the history
  • Loading branch information
patmmccann committed Jun 3, 2024
1 parent eb5d18f commit 00ffb82
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions modules/ampliffyBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ function extractTrackingURL(htmlContent, ret) {
const trackingUrlDiv = htmlContent.querySelectorAll('[bidder-tracking-url]')[0];
if (trackingUrlDiv) {
const trackingUrl = trackingUrlDiv.getAttribute('bidder-tracking-url');
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'parseXML: trackingUrl: ', trackingUrl)
ret.trackingUrl = trackingUrl;
}
Expand All @@ -304,10 +303,8 @@ export function parseXML(xml, bid) {
ret.userSyncs = extractSyncs(htmlContent);
}
} catch (e) {
// eslint-disable-next-line no-console
logError(LOG_PREFIX + 'Error parsing XML', e);
}
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'parseXML RET:', ret);

return ret;
Expand Down Expand Up @@ -341,7 +338,6 @@ export function isAllowedToBidUp(html, currentURL) {
}
}
} catch (e) {
// eslint-disable-next-line no-console
logError(LOG_PREFIX + 'isAllowedToBidUp', e);
}
return allowedToPush;
Expand Down Expand Up @@ -399,7 +395,6 @@ function onBidWon(bid) {
}
}
function onTimeOut() {
// eslint-disable-next-line no-console
logInfo(LOG_PREFIX + 'TIMEOUT');
}

Expand Down

0 comments on commit 00ffb82

Please sign in to comment.