Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: log repo problems correctly (#22349)
  • Loading branch information
PhilipAbed committed May 22, 2023
1 parent d9f5d04 commit 18bd6b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/workers/repository/dependency-dashboard.ts
Expand Up @@ -168,7 +168,10 @@ function appendRepoProblems(config: RenovateConfig, issueBody: string): string {
)
);
if (repoProblems.size) {
logger.debug({ repoProblems }, 'repository problems');
logger.debug(
{ repoProblems: Array.from(repoProblems) },
'repository problems'
);
newIssueBody += '## Repository problems\n\n';
newIssueBody +=
'These problems occurred while renovating this repository.\n\n';
Expand Down

0 comments on commit 18bd6b6

Please sign in to comment.