Resolve shift clock issues. IO-699

This commit is contained in:
Patrick Fic
2021-02-24 14:41:01 -08:00
parent 970fe5f9b7
commit 24fb9fd0a0
4 changed files with 45 additions and 15 deletions

View File

@@ -58,7 +58,12 @@ export const logImEXEvent = (eventName, additionalParams, stateProp = null) => {
null,
...additionalParams,
};
console.log("%c[Analytics]", "background: tomato", eventName, eventParams);
console.log(
"%c[Analytics]",
"background-color: green ;font-weight:bold;",
eventName,
eventParams
);
analytics.logEvent(eventName, eventParams);
};