added a msg in console when FS is ready

This commit is contained in:
csoler 2022-01-13 21:06:56 +01:00
parent 10f2e483b7
commit 24b2d8a2cf

View File

@ -98,6 +98,14 @@ int main(int argc, char* argv[])
FriendServer fs(base_directory,service_target_address,target_port);
fs.start();
RsDbg() << "";
RsDbg() << "================== Retroshare Friend Server has properly started =====================" ;
RsDbg() << "= =";
RsDbg() << "= Address:Port " << onion_address << ":" << service_port << ((service_port<10000)?" ":"") << " =";
RsDbg() << "= =";
RsDbg() << "======================================================================================" ;
RsDbg() << "";
while(fs.isRunning())
std::this_thread::sleep_for(std::chrono::seconds(2));