Skip to content

Commit

Permalink
Change: Issue a info message if affected products are updated
Browse files Browse the repository at this point in the history
All messages indicating a start of something should get a end/done
message. This allows the user to track the progress.
  • Loading branch information
bjoernricks committed Jan 30, 2025
1 parent da80ee3 commit 6e5511b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/manage_sql_secinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -4090,7 +4090,7 @@ update_scap_affected_products ()
GString *cve_ids_buffer;
int count = 0;

g_info ("Updating affected products");
g_info ("Updating affected products ...");

init_iterator (&cves_iter,
"SELECT DISTINCT cve_id FROM scap2.cpe_match_nodes");
Expand Down Expand Up @@ -4121,6 +4121,7 @@ update_scap_affected_products ()
}
g_free (cve_ids_buffer);

g_info ("Updating affected products ... done");
}

/**
Expand Down

0 comments on commit 6e5511b

Please sign in to comment.