aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-02-17 22:57:14 +0000
committerHoward Chu <hyc@symas.com>2016-02-23 20:29:17 +0000
commitea5fa5e9b67c49ef7b69d4a244bf25d2ae0e008e (patch)
tree340295466459741b3ef76d14c90f15c1f6881e6b /src/cryptonote_core
parentMerge pull request #674 (diff)
downloadmonero-ea5fa5e9b67c49ef7b69d4a244bf25d2ae0e008e.tar.xz
core: print "update needed" hard fork notifications in red
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index 2c485d791..6f0fe88a4 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -943,14 +943,14 @@ namespace cryptonote
HardFork::State state = m_blockchain_storage.get_hard_fork_state();
switch (state) {
case HardFork::LikelyForked:
- LOG_PRINT_L0(ENDL
+ LOG_PRINT_RED_L0(ENDL
<< "**********************************************************************" << ENDL
<< "Last scheduled hard fork is too far in the past." << ENDL
<< "We are most likely forked from the network. Daemon update needed now." << ENDL
<< "**********************************************************************" << ENDL);
break;
case HardFork::UpdateNeeded:
- LOG_PRINT_L0(ENDL
+ LOG_PRINT_RED_L0(ENDL
<< "**********************************************************************" << ENDL
<< "Last scheduled hard fork time shows a daemon update is needed now." << ENDL
<< "**********************************************************************" << ENDL);