Skip to content

Commit bf9c70b

Browse files
thelazierlaanwj
authored andcommitted
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
1 parent 1f86d64 commit bf9c70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/winshutdownmonitor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bool WinShutdownMonitor::nativeEventFilter(const QByteArray &eventType, void *pM
2727
// Warn only once as this is performance-critical
2828
static bool warned = false;
2929
if (!warned) {
30-
LogPrint("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__);
30+
LogPrintf("%s: OpenSSL RAND_event() failed to seed OpenSSL PRNG with enough data.\n", __func__);
3131
warned = true;
3232
}
3333
}

0 commit comments

Comments
 (0)