Skip to content

Commit

Permalink
update userSync messaging for re-fire to not be warning (#4034)
Browse files Browse the repository at this point in the history
  • Loading branch information
snapwich authored and jsnellbaker committed Jul 30, 2019
1 parent 5dfb923 commit 8302d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/userSync.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export function newUserSync(userSyncDependencies) {
*/
publicApi.registerSync = (type, bidder, url) => {
if (hasFiredBidder.has(bidder)) {
return utils.logWarn(`already registered syncs for "${bidder}"`);
return utils.logMessage(`already fired syncs for "${bidder}", ignoring registerSync call`);
}
if (!usConfig.syncEnabled || !utils.isArray(queue[type])) {
return utils.logWarn(`User sync type "${type}" not supported`);
Expand Down

0 comments on commit 8302d96

Please sign in to comment.