From 7965b5ae987de9f48a53abb547faee039423eae2 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Thu, 1 Jun 2023 07:03:31 +0200
Subject: [PATCH] chore: log when osv true

---
 lib/workers/repository/process/extract-update.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/workers/repository/process/extract-update.ts b/lib/workers/repository/process/extract-update.ts
index 66e0c14bdf..f384283e0b 100644
--- a/lib/workers/repository/process/extract-update.ts
+++ b/lib/workers/repository/process/extract-update.ts
@@ -172,6 +172,7 @@ async function fetchVulnerabilities(
   packageFiles: Record<string, PackageFile[]>
 ): Promise<void> {
   if (config.osvVulnerabilityAlerts) {
+    logger.debug('fetchVulnerabilities() - osvVulnerabilityAlerts=true');
     try {
       const vulnerabilities = await Vulnerabilities.create();
       await vulnerabilities.appendVulnerabilityPackageRules(
-- 
GitLab