diff --git a/lib/workers/repository/onboarding/branch/index.ts b/lib/workers/repository/onboarding/branch/index.ts
index 5371c7146e96c0b605bad09f6f05ee0c91c04597..4a21aea45795dc854dd9f6528881e0ee1e523a13 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 497369ec8e5c7621e8e81e0d0e9f74fa08864992..8c3a5922282a6d873fd8c391016cea430bef8e03 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<string, string> = {};
   const nonUpdatedFileContents: Record<string, string> = {};