This commit is contained in:
parent
8be905fea9
commit
4c01accba3
|
@ -614,14 +614,14 @@ module.exports = class MyLogger {
|
||||||
}
|
}
|
||||||
|
|
||||||
let created = new Date(evt.timestamp);
|
let created = new Date(evt.timestamp);
|
||||||
created = Date.UTC(
|
created = new Date(Date.UTC(
|
||||||
created.getFullYear(),
|
created.getFullYear(),
|
||||||
created.getMonth(),
|
created.getMonth(),
|
||||||
created.getDate(),
|
created.getDate(),
|
||||||
created.getHours(),
|
created.getHours(),
|
||||||
created.getMinutes(),
|
created.getMinutes(),
|
||||||
created.getSeconds()
|
created.getSeconds()
|
||||||
);
|
));
|
||||||
|
|
||||||
const modelName = tableInfo.modelName;
|
const modelName = tableInfo.modelName;
|
||||||
const modelId = row[tableInfo.idName];
|
const modelId = row[tableInfo.idName];
|
||||||
|
|
Loading…
Reference in New Issue