v0.10 ASCII art
This commit is contained in:
parent
e1ff02c1c5
commit
71fc01aaf2
|
@ -1765,6 +1765,48 @@ namespace cryptonote
|
|||
main_message = "The daemon will start synchronizing with the network. This may take a long time to complete.";
|
||||
MGINFO_MAGENTA(ENDL <<
|
||||
"\n\n"
|
||||
" ██╗██╗ ██╗███╗ ██╗██╗ ██╗██╗███████╗ \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
|
||||
<< main_message << ENDL
|
||||
|
|
|
@ -1676,8 +1676,22 @@ namespace cryptonote
|
|||
+ std::to_string(previous_stripe) + " -> " + std::to_string(current_stripe);
|
||||
if (ELPP->vRegistry()->allowed(el::Level::Debug, "sync-info"))
|
||||
timing_message += std::string(": ") + m_block_queue.get_overview(current_blockchain_height);
|
||||
MGINFO_YELLOW("Synced " << current_blockchain_height << "/" << target_blockchain_height
|
||||
<< progress_message << timing_message);
|
||||
uint64_t num = (rand() % 4) + 1;
|
||||
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)
|
||||
notify_new_stripe(context, current_stripe);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue