aboutsummaryrefslogtreecommitdiff
path: root/src/random.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2017-04-02 08:28:59 +0200
committerWladimir J. van der Laan <[email protected]>2017-04-02 08:47:02 +0200
commit1a5aaabb8a3d67a039ad120bb5d8d418467cac4e (patch)
tree4090f9ae3b6e908b2066ebb1cc7c1cffb51ca734 /src/random.cpp
parentMerge #10136: build: Disable Wshadow warning (diff)
parentChange LogAcceptCategory to use uint32_t rather than sets of strings. (diff)
downloaddiscoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.tar.xz
discoin-1a5aaabb8a3d67a039ad120bb5d8d418467cac4e.zip
Merge #9424: Change LogAcceptCategory to use uint32_t rather than sets of strings.
6b3bb3d Change LogAcceptCategory to use uint32_t rather than sets of strings. (Gregory Maxwell) Tree-SHA512: ebb5bcf9a7d00a32dd1390b727ff4d29330a038423611da01268d8e1d2c0229e52a1098e751d4e6db73ef4ae862e1e96d38249883fcaf12b68f55ebb01035b34
Diffstat (limited to 'src/random.cpp')
-rw-r--r--src/random.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.cpp b/src/random.cpp
index 8284f457c..6bcd0a70b 100644
--- a/src/random.cpp
+++ b/src/random.cpp
@@ -91,7 +91,7 @@ static void RandAddSeedPerfmon()
if (ret == ERROR_SUCCESS) {
RAND_add(vData.data(), nSize, nSize / 100.0);
memory_cleanse(vData.data(), nSize);
- LogPrint("rand", "%s: %lu bytes\n", __func__, nSize);
+ LogPrint(BCLog::RAND, "%s: %lu bytes\n", __func__, nSize);
} else {
static bool warned = false; // Warn only once
if (!warned) {