diff --git a/lib/workers/repository/onboarding/branch/index.ts b/lib/workers/repository/onboarding/branch/index.ts index 5371c7146e96c0..4a21aea45795dc 100644 --- a/lib/workers/repository/onboarding/branch/index.ts +++ b/lib/workers/repository/onboarding/branch/index.ts @@ -72,6 +72,7 @@ export async function checkOnboardingBranch( } } if (!GlobalConfig.get('dryRun')) { + logger.debug('Checkout onboarding branch.'); // TODO #7154 await checkoutBranch(onboardingBranch!); } diff --git a/lib/workers/repository/update/branch/get-updated.ts b/lib/workers/repository/update/branch/get-updated.ts index 497369ec8e5c76..8c3a5922282a6d 100644 --- a/lib/workers/repository/update/branch/get-updated.ts +++ b/lib/workers/repository/update/branch/get-updated.ts @@ -25,7 +25,7 @@ export async function getUpdatedPackageFiles( logger.trace({ config }); const reuseExistingBranch = config.reuseExistingBranch!; logger.debug( - `manager.getUpdatedPackageFiles() reuseExistinbranch=${reuseExistingBranch}` + `manager.getUpdatedPackageFiles() reuseExistingBranch=${reuseExistingBranch}` ); let updatedFileContents: Record = {}; const nonUpdatedFileContents: Record = {};