Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sayan-rudder committed May 1, 2020
1 parent f7ae61a commit 205108d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class Analytics {
}

this.pause(INTEGRATION_LOAD_CHECK_INTERVAL).then(() => {
console.log("====after pause, again checking====")
logger.debug("====after pause, again checking====")
return this.isInitialized(
instance,
time + INTEGRATION_LOAD_CHECK_INTERVAL
Expand Down Expand Up @@ -766,7 +766,7 @@ if (process.browser) {
if (methodArg.length > 0 && methodArg[0] == "load") {
let method = methodArg[0];
methodArg.shift();
console.log("=====from init, calling method:: ", method)
logger.debug("=====from init, calling method:: ", method)
instance[method](...methodArg);
}

Expand Down

0 comments on commit 205108d

Please sign in to comment.