log: [refactor] Use info level for init logs

This refactor does not change behavior.
This commit is contained in:
MarcoFalke
2025-07-25 09:52:43 +02:00
parent fa183761cb
commit face8123fd
27 changed files with 106 additions and 102 deletions

View File

@@ -107,10 +107,10 @@ void ReportHardwareRand()
// This must be done in a separate function, as InitHardwareRand() may be indirectly called
// from global constructors, before logging is initialized.
if (g_rdseed_supported) {
LogPrintf("Using RdSeed as an additional entropy source\n");
LogInfo("Using RdSeed as an additional entropy source");
}
if (g_rdrand_supported) {
LogPrintf("Using RdRand as an additional entropy source\n");
LogInfo("Using RdRand as an additional entropy source");
}
}