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