net_service: fix broken log formatting

This commit is contained in:
jpk68
2026-05-04 21:23:11 -04:00
committed by selsta
parent 4a24ca3ad6
commit 8419a91e5a
2 changed files with 2 additions and 2 deletions
@@ -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!");
+1 -1
View File
@@ -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!");