1.0.0-rc4 rc4

This commit is contained in:
2026-06-08 12:15:36 +02:00
parent 1502d4d9d0
commit 6d3c6fed0f
23 changed files with 968 additions and 667 deletions
+2 -1
View File
@@ -2,6 +2,7 @@ const fs = require('fs');
const path = require('path');
const { logLevel } = require('../config');
const { getBackendLogDir, getFallbackLogRootDir } = require('./logPathService');
const { getServerTimestamp } = require('../utils/serverTime');
const LEVELS = {
debug: 10,
@@ -123,7 +124,7 @@ function emit(level, scope, message, meta = null) {
return;
}
const timestamp = new Date().toISOString();
const timestamp = getServerTimestamp();
const payload = {
timestamp,
level: normLevel,