update some other logging stuff
Some checks are pending
Docker - learnGitBranching image / build-and-push-image (push) Waiting to run

This commit is contained in:
Peter Cottle 2025-08-21 10:04:25 -04:00
parent f2459edc04
commit 3b6a54b5de

View file

@ -1,7 +1,10 @@
var log = function(category, action, label) {
window._gaq = window._gaq || [];
window._gaq.push(['_trackEvent', category, action, label]);
window.gtag = window.gtag || function() {};
window.gtag('event', action, {
'event_category': category,
'event_label': label
});
//console.log('just logged ', [category, action, label].join('|'));
};