From c3081550b1127afa6124afec45ddc3893c86b628 Mon Sep 17 00:00:00 2001 From: yuqing Date: Sat, 9 Aug 2014 16:22:37 +0800 Subject: [PATCH] logInfo change to logDebug --- tracker/tracker_service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracker/tracker_service.c b/tracker/tracker_service.c index 13a6d25..4d4d7ff 100644 --- a/tracker/tracker_service.c +++ b/tracker/tracker_service.c @@ -1632,7 +1632,7 @@ static int tracker_unlock_by_client(struct fast_task_info *pTask) tracker_mem_file_unlock(); - logInfo("file: "__FILE__", line: %d, " \ + logDebug("file: "__FILE__", line: %d, " \ "unlock by client: %s, locked count: %d", \ __LINE__, pTask->client_ip, lock_by_client_count); @@ -1651,7 +1651,7 @@ static int tracker_lock_by_client(struct fast_task_info *pTask) pTask->finish_callback = tracker_unlock_by_client; //make sure to release lock lock_by_client_count++; - logInfo("file: "__FILE__", line: %d, " \ + logDebug("file: "__FILE__", line: %d, " \ "lock by client: %s, locked count: %d", \ __LINE__, pTask->client_ip, lock_by_client_count);