diff --git a/lib/util/git/index.ts b/lib/util/git/index.ts index f44935db9521a3e275d440972fe6a271c4b5f3fd..3f50ee949631634b9790bb43ca196414c07606ed 100644 --- a/lib/util/git/index.ts +++ b/lib/util/git/index.ts @@ -487,8 +487,8 @@ export async function isBranchStale(branchName: string): Promise<boolean> { ]); const isStale = !branches.all.map(localName).includes(branchName); logger.debug( - { isStale, branches, currentBranch, currentBranchSha }, - `IsBranchStale=${isStale}` + { isStale, currentBranch, currentBranchSha }, + `isBranchStale=${isStale}` ); return isStale; } catch (err) /* istanbul ignore next */ { diff --git a/lib/workers/pr/index.ts b/lib/workers/pr/index.ts index e84858b73fa86b75670b5ba5f116c5696cd46378..64a77f855e92ed6f871a31ab2392aa4776c668eb 100644 --- a/lib/workers/pr/index.ts +++ b/lib/workers/pr/index.ts @@ -58,6 +58,7 @@ export async function addAssigneesReviewers( pr: Pr ): Promise<void> { let assignees = config.assignees; + logger.debug(`addAssigneesReviewers(pr=${pr?.number})`); if (config.assigneesFromCodeOwners) { assignees = await addCodeOwners(assignees, pr); }