зеркало из https://github.com/mozilla/kitsune.git
add console logging
This commit is contained in:
Родитель
99ae465c5d
Коммит
97a722a489
|
@ -1,5 +1,9 @@
|
|||
export default function trackEvent(name, parameters) {
|
||||
if (window.gtag) {
|
||||
console.log("------------------------------");
|
||||
console.log(`event: ${name}:`);
|
||||
console.log(`parameters: ${JSON.stringify(parameters, null, 2)}`);
|
||||
console.log("------------------------------");
|
||||
window.gtag('event', name, parameters);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,6 +46,10 @@ import dntEnabled from "./libs/dnt-helper";
|
|||
configParameters.article_locale = html.dataset.gaArticleLocale;
|
||||
}
|
||||
|
||||
console.log("------------------------------");
|
||||
console.log(`config for ${GTM_CONTAINER_ID}:`);
|
||||
console.log(`parameters: ${JSON.stringify(configParameters, null, 2)}`);
|
||||
console.log("------------------------------");
|
||||
w.gtag('config', GTM_CONTAINER_ID, configParameters);
|
||||
}
|
||||
})(window);
|
||||
|
|
Загрузка…
Ссылка в новой задаче