v0.10 ASCII art
This commit is contained in:
parent
e1ff02c1c5
commit
71fc01aaf2
|
@ -1763,9 +1763,51 @@ namespace cryptonote
|
||||||
main_message = "The daemon is running offline and will not attempt to sync to the Monero network.";
|
main_message = "The daemon is running offline and will not attempt to sync to the Monero network.";
|
||||||
else
|
else
|
||||||
main_message = "The daemon will start synchronizing with the network. This may take a long time to complete.";
|
main_message = "The daemon will start synchronizing with the network. This may take a long time to complete.";
|
||||||
MGINFO_MAGENTA(ENDL <<
|
MGINFO_MAGENTA(ENDL <<
|
||||||
"\n \n"
|
"\n\n"
|
||||||
"\n \n" << ENDL);
|
" ██╗██╗ ██╗███╗ ██╗██╗ ██╗██╗███████╗ \n"
|
||||||
|
" ██║██║ ██║████╗ ██║██║ ██╔╝██║██╔════╝ \n"
|
||||||
|
" ██║██║ ██║██╔██╗ ██║█████╔╝ ██║█████╗ \n"
|
||||||
|
" ██ ██║██║ ██║██║╚██╗██║██╔═██╗ ██║██╔══╝ \n"
|
||||||
|
" ╚█████╔╝╚██████╔╝██║ ╚████║██║ ██╗██║███████╗ \n"
|
||||||
|
" ╚════╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝╚══════╝ "
|
||||||
|
<< ENDL);
|
||||||
|
MGINFO_RED(ENDL <<
|
||||||
|
" @@@@&///////////////@ \n"
|
||||||
|
" @@@@@@@@@@@@@@@@*/////////////////////#@ \n"
|
||||||
|
" @#////////(&@@@@//////////////////////////////////@ \n"
|
||||||
|
" @&////////////////////////////#@@@@@@@ *////////@ \n"
|
||||||
|
" @%///////////////////////////&@@@@@@/ /////&@ \n"
|
||||||
|
" @@//////////////////////////%@@@@@@ */////@ \n"
|
||||||
|
" @@#//////////////#@@@@@@@@@@@@@@@& ,///////////* /////#@ \n"
|
||||||
|
" @///////////*@@@@@@@@@@@@@ .////////////@@@#//////&@ \n"
|
||||||
|
" @(///////////%@@@@/,%&&/ ,//////. */////////(@@@%///#@ \n"
|
||||||
|
" @%//////////// *//////////////////////////// //////////@@@@///& \n"
|
||||||
|
"@%//////////. *///////////////S/v/n/g/V/f/G/u/r/C/b/b/e//////@@@@/// \n"
|
||||||
|
" @////////////*.///////%/////////////Z/n/a/f/Z/b/a/r/l/////////@@@(// \n"
|
||||||
|
" @@@#////////////..///@@@(///////////////////////////////////@@@/// \n"
|
||||||
|
" @@#//////////. //&@@(//////////////////////////((((*////(//// \n"
|
||||||
|
" &//////// ///@@%////////////////////(((((((((,*///////// \n"
|
||||||
|
" //&@@///////////((((%%%%(/////%%%%(,*//////// \n"
|
||||||
|
" .//@@@/////////*(((///%%//%//%%/////*///////# \n"
|
||||||
|
" //(@@@@////////**////(%%%%%%%%%//////**////// \n"
|
||||||
|
" ////////////////,/////%%%//%%////////#*//// \n"
|
||||||
|
" .////////////////*///////////////..,**///// \n"
|
||||||
|
" ,////////////////*/////#...,***////////// \n"
|
||||||
|
" &////////////////*,,**///////////////// \n"
|
||||||
|
" #/////////////////////////////////// \n"
|
||||||
|
" %/////////////////////////////// \n"
|
||||||
|
" ////////////////////////// \n"
|
||||||
|
" //////////////// "
|
||||||
|
<< ENDL);
|
||||||
|
MGINFO_MAGENTA(ENDL <<
|
||||||
|
" ██╗███████╗███████╗███████╗ \n"
|
||||||
|
" ██║██╔════╝██╔════╝██╔════╝ \n"
|
||||||
|
" ██║█████╗ █████╗ █████╗ \n"
|
||||||
|
" ██ ██║██╔══╝ ██╔══╝ ██╔══╝ \n"
|
||||||
|
" ╚█████╔╝███████╗██║ ██║ \n"
|
||||||
|
" ╚════╝ ╚══════╝╚═╝ ╚═╝ \n"
|
||||||
|
"\n\n" << ENDL);
|
||||||
MGINFO_YELLOW(ENDL << "**********************************************************************" << ENDL
|
MGINFO_YELLOW(ENDL << "**********************************************************************" << ENDL
|
||||||
<< main_message << ENDL
|
<< main_message << ENDL
|
||||||
<< ENDL
|
<< ENDL
|
||||||
|
|
|
@ -1676,8 +1676,22 @@ namespace cryptonote
|
||||||
+ std::to_string(previous_stripe) + " -> " + std::to_string(current_stripe);
|
+ std::to_string(previous_stripe) + " -> " + std::to_string(current_stripe);
|
||||||
if (ELPP->vRegistry()->allowed(el::Level::Debug, "sync-info"))
|
if (ELPP->vRegistry()->allowed(el::Level::Debug, "sync-info"))
|
||||||
timing_message += std::string(": ") + m_block_queue.get_overview(current_blockchain_height);
|
timing_message += std::string(": ") + m_block_queue.get_overview(current_blockchain_height);
|
||||||
MGINFO_YELLOW("Synced " << current_blockchain_height << "/" << target_blockchain_height
|
uint64_t num = (rand() % 4) + 1;
|
||||||
<< progress_message << timing_message);
|
switch (num)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
MGINFO_MAGENTA("Synced " << current_blockchain_height << "/" << target_blockchain_height << progress_message << timing_message);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
MGINFO_YELLOW("Synced " << current_blockchain_height << "/" << target_blockchain_height << progress_message << timing_message);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
MGINFO_BLUE("Synced " << current_blockchain_height << "/" << target_blockchain_height << progress_message << timing_message);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
MGINFO_GREEN("Synced " << current_blockchain_height << "/" << target_blockchain_height << progress_message << timing_message);
|
||||||
|
break;
|
||||||
|
}
|
||||||
if (previous_stripe != current_stripe)
|
if (previous_stripe != current_stripe)
|
||||||
notify_new_stripe(context, current_stripe);
|
notify_new_stripe(context, current_stripe);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue