Skip to content

Commit

Permalink
Log error message when fail to init PR (#6569)
Browse files Browse the repository at this point in the history
Part of #6513
  • Loading branch information
alexr00 authored Dec 19, 2024
1 parent bd9df0a commit 03410cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/reviewManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ export class ReviewManager extends Disposable {

return Promise.resolve(void 0);
} catch (e) {
Logger.error(`Failed to initialize PR data ${e}`, this.id);
Logger.error(`Failed to initialize PR data ${e}: ${e.message}`, this.id);
}
}

Expand Down

0 comments on commit 03410cb

Please sign in to comment.