mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
10 lines
301 B
JavaScript
10 lines
301 B
JavaScript
|
|
export function setUpLogging () {
|
||
|
|
let _LTracker = window._LTracker || []; // eslint-disable-line
|
||
|
|
_LTracker.push({ // eslint-disable-line
|
||
|
|
logglyKey: process.env.LOGGLY_CLIENT_TOKEN, // eslint-disable-line no-process-env
|
||
|
|
sendConsoleErrors: true,
|
||
|
|
tag: 'ClientJS',
|
||
|
|
json: true,
|
||
|
|
});
|
||
|
|
}
|