Skip to content

Commit bb0304c

Browse files
committed
🔧 update (logging): configure LogEngine with no timestamps
1 parent afafab0 commit bb0304c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

‎src/app.ts‎

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ import { validateEvent } from './middleware/validation';
1111
import { WebhookRequest } from './types';
1212
import { RedisService } from './services/redisService';
1313

14-
// Configure LogEngine to use only local time (no ISO timestamp)
14+
// Configure LogEngine with no timestamps (emoji + level + message only)
1515
LogEngine.configure({
16-
mode: LogMode.DEBUG
16+
mode: LogMode.DEBUG,
17+
format: {
18+
includeIsoTimestamp: false,
19+
includeLocalTime: false
20+
}
1721
});
1822

1923
const app = express();

0 commit comments

Comments
 (0)