diff --git a/src/gvmd.c b/src/gvmd.c index ccf4656a4..60df1470d 100644 --- a/src/gvmd.c +++ b/src/gvmd.c @@ -2418,7 +2418,7 @@ gvmd (int argc, char** argv) g_info (" Migration succeeded."); return EXIT_SUCCESS; case 1: - g_warning ("%s: databases are already at the supported version", + g_info ("%s: databases are already at the supported version", __func__); return EXIT_SUCCESS; case 2: diff --git a/src/manage_sql_nvts.c b/src/manage_sql_nvts.c index 8183919a1..1875e666e 100644 --- a/src/manage_sql_nvts.c +++ b/src/manage_sql_nvts.c @@ -1959,8 +1959,12 @@ osp_scanner_feed_version (const gchar *update_socket) error = NULL; if (osp_get_vts_version (connection, &scanner_feed_version, &error)) { - g_warning ("%s: failed to get scanner_feed_version. %s", - __func__, error ? : ""); + if (error && strcmp (error, "OSPd OpenVAS is still starting") == 0) + g_info ("%s: failed to get scanner_feed_version. %s", + __func__, error); + else + g_warning ("%s: failed to get scanner_feed_version. %s", + __func__, error ? : ""); g_free (error); osp_connection_close (connection); return NULL; @@ -2264,4 +2268,4 @@ manage_dump_vt_verification (GSList *log_config, manage_option_cleanup (); return 0; -} \ No newline at end of file +}