@@ -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()