File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ static void SeedPeriodic(CSHA512& hasher, RNGState& rng) noexcept
517
517
// Dynamic environment data (performance monitoring, ...)
518
518
auto old_size = hasher.Size ();
519
519
RandAddDynamicEnv (hasher);
520
- LogPrintf ( " Feeding %i bytes of dynamic environment data into RNG\n " , hasher.Size () - old_size);
520
+ LogPrint (BCLog::RAND, " Feeding %i bytes of dynamic environment data into RNG\n " , hasher.Size () - old_size);
521
521
522
522
// Strengthen for 10 ms
523
523
SeedStrengthen (hasher, rng, 10000 );
@@ -537,7 +537,7 @@ static void SeedStartup(CSHA512& hasher, RNGState& rng) noexcept
537
537
538
538
// Static environment data
539
539
RandAddStaticEnv (hasher);
540
- LogPrintf ( " Feeding %i bytes of environment data into RNG\n " , hasher.Size () - old_size);
540
+ LogPrint (BCLog::RAND, " Feeding %i bytes of environment data into RNG\n " , hasher.Size () - old_size);
541
541
542
542
// Strengthen for 100 ms
543
543
SeedStrengthen (hasher, rng, 100000 );
You can’t perform that action at this time.
0 commit comments