diff options
author | TheLazieR Yip <thelazier@gmail.com> | 2016-06-21 00:46:59 +0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-06-21 10:21:42 +0200 |
commit | bf9c70b1008e1eada462955a6420e79a7d2a8352 (patch) | |
tree | 75d03d32ca734bce1791ba937c8cdb09c5247723 | |
parent | 1f86d64f6d87b46ee80c6d66b0c3c01c5095aaea (diff) |
Fix LogPrint to LogPrintf
Printing Log without category defined should use LogPrintf
Github-Pull: #8230
Meta: PR should have been based on master in the first place
-rw-r--r-- | src/qt/winshutdownmonitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/winshutdownmonitor.cpp b/src/qt/winshutdownmonitor.cpp index 1bc4f77959..a11da50588 100644 --- a/src/qt/winshutdownmonitor.cpp +++ b/src/qt/winshutdownmonitor.cpp @@ -27,7 +27,7 @@ bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pM // Warn only once as this is performance-critical static bool warned = false; if (!warned) { - LogPrint("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__); + LogPrintf("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__); warned = true; } } |