fix: issue with user-activity.log not being generated
This commit is contained in:
parent
c74dd50f86
commit
10d2927b31
@ -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));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user