mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 23:03:45 +01:00
log: [refactor] Use info level for init logs
This refactor does not change behavior.
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user