aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoin.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-06-21 20:22:13 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-06-21 20:22:13 +0300
commita2aabfb749198bce896c9e597082acd67d3b863e (patch)
treef615c6d442e0e7e30a8f66ba043760c0882c8882 /src/qt/bitcoin.cpp
parent32e94538185b61fe64bd16de2459e763ec46b4da (diff)
downloadbitcoin-a2aabfb749198bce896c9e597082acd67d3b863e.tar.xz
Use qInfo() if no error occurs
qWarning() is used to report warnings and recoverable errors in your application. qInfo() is used for informational messages (since Qt 5.5).
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r--src/qt/bitcoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 0c232f89fe..f6ed88a1e6 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -330,7 +330,7 @@ void BitcoinApplication::initializeResult(bool success)
if(success)
{
// Log this only after AppInitMain finishes, as then logging setup is guaranteed complete
- qWarning() << "Platform customization:" << platformStyle->getName();
+ qInfo() << "Platform customization:" << platformStyle->getName();
#ifdef ENABLE_WALLET
m_wallet_controller = new WalletController(m_node, platformStyle, optionsModel, this);
#ifdef ENABLE_BIP70