mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-05-05 03:18:50 +02:00
log: [refactor] Use info level for init logs
This refactor does not change behavior.
This commit is contained in:
@@ -54,7 +54,7 @@ bool noui_ThreadSafeQuestion(const bilingual_str& /* ignored interactive message
|
||||
|
||||
void noui_InitMessage(const std::string& message)
|
||||
{
|
||||
LogPrintf("init message: %s\n", message);
|
||||
LogInfo("init message: %s", message);
|
||||
}
|
||||
|
||||
void noui_connect()
|
||||
@@ -66,19 +66,19 @@ void noui_connect()
|
||||
|
||||
bool noui_ThreadSafeMessageBoxRedirect(const bilingual_str& message, const std::string& caption, unsigned int style)
|
||||
{
|
||||
LogPrintf("%s: %s\n", caption, message.original);
|
||||
LogInfo("%s: %s", caption, message.original);
|
||||
return false;
|
||||
}
|
||||
|
||||
bool noui_ThreadSafeQuestionRedirect(const bilingual_str& /* ignored interactive message */, const std::string& message, const std::string& caption, unsigned int style)
|
||||
{
|
||||
LogPrintf("%s: %s\n", caption, message);
|
||||
LogInfo("%s: %s", caption, message);
|
||||
return false;
|
||||
}
|
||||
|
||||
void noui_InitMessageRedirect(const std::string& message)
|
||||
{
|
||||
LogPrintf("init message: %s\n", message);
|
||||
LogInfo("init message: %s", message);
|
||||
}
|
||||
|
||||
void noui_test_redirect()
|
||||
|
||||
Reference in New Issue
Block a user