mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
v0.10 ASCII art
This commit is contained in:
parent
70f8f2386c
commit
1196a9253b
2 changed files with 61 additions and 5 deletions
|
@ -1765,9 +1765,51 @@ namespace cryptonote
|
|||
main_message = "The daemon is running offline and will not attempt to sync to the Monero network.";
|
||||
else
|
||||
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" << ENDL);
|
||||
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
|
||||
<< ENDL
|
||||
|
|
|
@ -1675,8 +1675,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 a new issue