We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afafab0 commit bb0304cCopy full SHA for bb0304c
1 file changed
‎src/app.ts‎
@@ -11,9 +11,13 @@ import { validateEvent } from './middleware/validation';
11
import { WebhookRequest } from './types';
12
import { RedisService } from './services/redisService';
13
14
-// Configure LogEngine to use only local time (no ISO timestamp)
+// Configure LogEngine with no timestamps (emoji + level + message only)
15
LogEngine.configure({
16
- mode: LogMode.DEBUG
+ mode: LogMode.DEBUG,
17
+ format: {
18
+ includeIsoTimestamp: false,
19
+ includeLocalTime: false
20
+ }
21
});
22
23
const app = express();
0 commit comments