fix: issue with user-activity.log not being generated

This commit is contained in:
Rim 2025-04-02 08:08:52 -04:00
parent c74dd50f86
commit 10d2927b31

View File

@ -33,7 +33,7 @@ const clientLogger = {
[ [
JSON.stringify({ JSON.stringify({
eventType, eventType,
timestamp: global.Utils.toIsoString(new Date()), timestamp: new Date().toISOString(),
...data, ...data,
}), }),
], ],
@ -49,7 +49,7 @@ const clientLogger = {
keepalive: true, keepalive: true,
body: JSON.stringify({ body: JSON.stringify({
eventType, eventType,
timestamp: global.Utils.toIsoString(new Date()), timestamp: new Date().toISOString(),
...data, ...data,
}), }),
}).catch((e) => logger.error('Logging error:', e)); }).catch((e) => logger.error('Logging error:', e));