mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-18 16:01:00 +02:00
node: Use log levels in noui_ThreadSafeMessageBox
This commit is contained in:
parent
ddc7872c08
commit
824f47294a
@ -28,20 +28,21 @@ bool noui_ThreadSafeMessageBox(const bilingual_str& message, const std::string&
|
||||
switch (style) {
|
||||
case CClientUIInterface::MSG_ERROR:
|
||||
strCaption = "Error: ";
|
||||
if (!fSecure) LogError("%s\n", message.original);
|
||||
break;
|
||||
case CClientUIInterface::MSG_WARNING:
|
||||
strCaption = "Warning: ";
|
||||
if (!fSecure) LogWarning("%s\n", message.original);
|
||||
break;
|
||||
case CClientUIInterface::MSG_INFORMATION:
|
||||
strCaption = "Information: ";
|
||||
if (!fSecure) LogInfo("%s\n", message.original);
|
||||
break;
|
||||
default:
|
||||
strCaption = caption + ": "; // Use supplied caption (can be empty)
|
||||
if (!fSecure) LogInfo("%s%s\n", strCaption, message.original);
|
||||
}
|
||||
|
||||
if (!fSecure) {
|
||||
LogPrintf("%s%s\n", strCaption, message.original);
|
||||
}
|
||||
tfm::format(std::cerr, "%s%s\n", strCaption, message.original);
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user