added debug log back

This commit is contained in:
bill bittner 2018-06-06 15:59:30 -07:00
parent f41ac47c3e
commit bf771998a8

View file

@ -31,6 +31,7 @@ const sendGoogleAnalyticsEvent = (ip, params) => {
if (err) {
return logger.error('Google Analytics Event Error >>', err);
}
logger.debug(`Event successfully sent to google analytics`, params);
});
};
@ -41,6 +42,7 @@ const sendGoogleAnalyticsTiming = (siteTitle, params) => {
if (err) {
return logger.error('Google Analytics Event Error >>', err);
}
logger.debug(`Event successfully sent to google analytics`, params);
});
};