From ff650ce8225abc6e88909d1e3a5f22bee370a2da Mon Sep 17 00:00:00 2001 From: RahulGautamSingh Date: Thu, 4 Aug 2022 17:51:09 +0530 Subject: [PATCH] chore: onboarding branch checkout log (#16966) --- lib/workers/repository/onboarding/branch/index.ts | 1 + lib/workers/repository/update/branch/get-updated.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 = {};