From 610d2598727f43c0f59c085c21976b2578f7de26 Mon Sep 17 00:00:00 2001 From: Nishchal Gautam Date: Sat, 24 Aug 2019 13:03:31 +0700 Subject: [PATCH] feat(app): add better logging add timestamp --- src/App.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.ts b/src/App.ts index 6ac6aa5..4e07a65 100644 --- a/src/App.ts +++ b/src/App.ts @@ -14,7 +14,7 @@ export class App { } private static handleEvent(context: Context): Promise { - context.log.info(`handling ${context.event} event`); + context.log.info(`handling ${context.event} event ${Date.now()}`); const app = new App(new GithubIssueHelper(context.github, PayloadHelper.isPr(context.payload)), new PayloadHelper(context), context); return app.handleEvent(); }