Merge pull request #10540

8419a91 net_service: fix broken log formatting (jpk68)
This commit is contained in:
tobtoht
2026-05-13 11:05:57 +00:00
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!");