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({
|
||||
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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user