From 8323a9ae93ebe50b27164f04867923d461176a9a Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 1 May 2025 20:13:51 -0500 Subject: [PATCH] fuse_loop.cpp --- libfuse/lib/fuse_loop.cpp | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/libfuse/lib/fuse_loop.cpp b/libfuse/lib/fuse_loop.cpp index 4b8e78d1..a348026b 100644 --- a/libfuse/lib/fuse_loop.cpp +++ b/libfuse/lib/fuse_loop.cpp @@ -311,15 +311,14 @@ fuse_session_loop_mt(struct fuse_session *se_, PinThreads::pin(read_threads,process_threads,pin_threads_type_); - SysLog::log(LOG_INFO, - "read-thread-count={}; " - "process-thread-count={}; " - "process-thread-queue-depth={}; " - "pin-threads={};", - read_thread_count, - process_thread_count, - process_thread_queue_depth, - pin_threads_type_); + SysLog::info("read-thread-count={}; " + "process-thread-count={}; " + "process-thread-queue-depth={}; " + "pin-threads={};", + read_thread_count, + process_thread_count, + process_thread_queue_depth, + pin_threads_type_); ::_wait(se_,&finished);