diff --git a/client/src/firebase/firebase.utils.js b/client/src/firebase/firebase.utils.js index 30828c71a..dac0fc8ca 100644 --- a/client/src/firebase/firebase.utils.js +++ b/client/src/firebase/firebase.utils.js @@ -63,12 +63,12 @@ export const logImEXEvent = (eventName, additionalParams, stateProp = null) => { null, ...additionalParams, }; - console.log( - "%c[Analytics]", - "background-color: green ;font-weight:bold;", - eventName, - eventParams - ); + // console.log( + // "%c[Analytics]", + // "background-color: green ;font-weight:bold;", + // eventName, + // eventParams + // ); logEvent(analytics, eventName, eventParams); //Log event to OpenReplay server. diff --git a/client/src/utils/GraphQLClient.js b/client/src/utils/GraphQLClient.js index 5c5223107..d0fa29461 100644 --- a/client/src/utils/GraphQLClient.js +++ b/client/src/utils/GraphQLClient.js @@ -38,9 +38,9 @@ const roundTripLink = new ApolloLink((operation, forward) => { return forward(operation).map((data) => { // Called after server responds const time = new Date() - operation.getContext().start; - console.log( - `Operation ${operation.operationName} took ${time} to complete` - ); + // console.log( + // `Operation ${operation.operationName} took ${time} to complete` + // ); TrackExecutionTime(operation.operationName, time); return data; });