Skip to content

Commit 610d259

Browse files
authored
feat(app): add better logging
add timestamp
1 parent 60fa6cf commit 610d259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class App {
1414
}
1515

1616
private static handleEvent(context: Context<TData>): Promise<void> {
17-
context.log.info(`handling ${context.event} event`);
17+
context.log.info(`handling ${context.event} event ${Date.now()}`);
1818
const app = new App(new GithubIssueHelper(context.github, PayloadHelper.isPr(context.payload)), new PayloadHelper(context), context);
1919
return app.handleEvent();
2020
}

0 commit comments

Comments
 (0)