mirror of
https://github.com/monero-project/monero.git
synced 2026-06-12 19:11:36 -07:00
Merge pull request #10540
8419a91 net_service: fix broken log formatting (jpk68)
This commit is contained in:
@@ -108,7 +108,7 @@ namespace epee
|
||||
bool run(size_t threads_count, bool wait = true)
|
||||
{
|
||||
//go to loop
|
||||
MINFO("Run net_service loop( " << threads_count << " threads)...");
|
||||
MINFO("Run net_service loop (" << threads_count << " threads)...");
|
||||
if(!m_net_server.run_server(threads_count, wait))
|
||||
{
|
||||
LOG_ERROR("Failed to run net tcp server!");
|
||||
|
||||
@@ -1047,7 +1047,7 @@ namespace nodetool
|
||||
boost::thread::attributes attrs;
|
||||
attrs.set_stack_size(THREAD_STACK_SIZE);
|
||||
//go to loop
|
||||
MINFO("Run net_service loop( " << thrds_count << " threads)...");
|
||||
MINFO("Run net_service loop (" << thrds_count << " threads)...");
|
||||
if(!public_zone.m_net_server.run_server(thrds_count, true, attrs))
|
||||
{
|
||||
LOG_ERROR("Failed to run net tcp server!");
|
||||
|
||||
Reference in New Issue
Block a user