Skip to content

Commit

Permalink
feat(app): add better logging
Browse files Browse the repository at this point in the history
add timestamp
  • Loading branch information
cyberhck authored Aug 24, 2019
1 parent 60fa6cf commit 610d259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class App {
}

private static handleEvent(context: Context<TData>): Promise<void> {
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();
}
Expand Down

0 comments on commit 610d259

Please sign in to comment.