diff options
| author | TheLazieR Yip <[email protected]> | 2016-06-21 00:46:59 +0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-06-21 10:21:42 +0200 |
| commit | bf9c70b1008e1eada462955a6420e79a7d2a8352 (patch) | |
| tree | 75d03d32ca734bce1791ba937c8cdb09c5247723 /src | |
| parent | Merge #8220: Stop trimming when mapTx is empty (diff) | |
| download | discoin-bf9c70b1008e1eada462955a6420e79a7d2a8352.tar.xz discoin-bf9c70b1008e1eada462955a6420e79a7d2a8352.zip | |
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
Diffstat (limited to 'src')
| -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 1bc4f7795..a11da5058 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; } } |