diff mbox series

[3/7] cve-update-db-native: log a little more

Message ID 20250824145745.1099373-3-peter.marko@siemens.com
State New
Headers show
Series [1/7] cve-update-db-native: Use a local copy of the database during builds | expand

Commit Message

Peter Marko Aug. 24, 2025, 2:57 p.m. UTC
From: Peter Marko <peter.marko@siemens.com>

OE-Core rev: b64a869b9c5e1d504f1011da16b5c5ff721afbf0

This commit was not applied on nvd1/fkie fetcher.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
---
 meta/recipes-core/meta/cve-update-db-native.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/meta/recipes-core/meta/cve-update-db-native.bb b/meta/recipes-core/meta/cve-update-db-native.bb
index fe7b8a017f..8a3746a9c1 100644
--- a/meta/recipes-core/meta/cve-update-db-native.bb
+++ b/meta/recipes-core/meta/cve-update-db-native.bb
@@ -58,7 +58,7 @@  python do_fetch() {
                 bb.error("CVE database %s not present, database fetch/update skipped" % db_file)
             return
         if time.time() - os.path.getmtime(db_file) < update_interval:
-            bb.debug(2, "Recently updated, skipping")
+            bb.note("CVE database recently updated, skipping")
             return
 
     except OSError:
@@ -77,7 +77,7 @@  python do_fetch() {
         shutil.move(db_tmp_file, db_file)
     else:
         # Update failed, do not modify the database
-        bb.note("CVE database update failed")
+        bb.warn("CVE database update failed")
         os.remove(db_tmp_file)
 }
 
@@ -159,7 +159,7 @@  def update_db_file(db_tmp_file, d):
     with bb.progress.ProgressHandler(d) as ph, open(os.path.join(d.getVar("TMPDIR"), 'cve_check'), 'a') as cve_f:
         total_years = date.today().year + 1 - YEAR_START
         for i, year in enumerate(range(YEAR_START, date.today().year + 1)):
-            bb.debug(2, "Updating %d" % year)
+            bb.note("Updating %d" % year)
             ph.update((float(i + 1) / total_years) * 100)
             json_url, meta_url = db_file_names(d, year, is_nvd)
 
@@ -190,7 +190,7 @@  def update_db_file(db_tmp_file, d):
             cursor.close()
 
             if not meta or meta[0] != last_modified:
-                bb.debug(2, "Updating entries")
+                bb.note("Updating entries")
                 # Clear products table entries corresponding to current year
                 conn.execute("delete from PRODUCTS where ID like ?", ('CVE-%d%%' % year,)).close()