Skip to content

Commit ddc8293

Browse files
committed
bitcoin.cpp: replace LogPrint with LogDebug
bitcoin/bitcoin#30750
1 parent 7fe6636 commit ddc8293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qml/bitcoin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, cons
130130
{
131131
Q_UNUSED(context);
132132
if (type == QtDebugMsg) {
133-
LogPrint(BCLog::QT, "GUI: %s\n", msg.toStdString());
133+
LogDebug(BCLog::QT, "GUI: %s\n", msg.toStdString());
134134
} else {
135135
LogPrintf("GUI: %s\n", msg.toStdString());
136136
}

0 commit comments

Comments
 (0)