From ea148ce54634a1535967b21d39ee6451aae87189 Mon Sep 17 00:00:00 2001 From: Lee Ballard Date: Wed, 18 Nov 2020 16:13:20 -0600 Subject: [PATCH] ballle98/AqualinkD#51: Filling up log with Programming and finished messages --- aq_programmer.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aq_programmer.c b/aq_programmer.c index b4ba577d..1d08db53 100644 --- a/aq_programmer.c +++ b/aq_programmer.c @@ -1112,8 +1112,6 @@ void waitForSingleThreadOrTerminate(struct programmingThreadCtrl *threadCtrl, pr clock_gettime(CLOCK_REALTIME, &threadCtrl->aq_data->start_active_time); - LOG(PROG_LOG, LOG_INFO, "Programming: %s, %d\n", ptypeName(threadCtrl->aq_data->active_thread.ptype), threadCtrl->aq_data->active_thread.ptype); - LOG(PROG_LOG, LOG_DEBUG, "Thread %d,%p is active (%s)\n", threadCtrl->aq_data->active_thread.ptype, threadCtrl->aq_data->active_thread.thread_id, @@ -1128,7 +1126,7 @@ void cleanAndTerminateThread(struct programmingThreadCtrl *threadCtrl) struct timespec elapsed; clock_gettime(CLOCK_REALTIME, &threadCtrl->aq_data->last_active_time); timespec_subtract(&elapsed, &threadCtrl->aq_data->last_active_time, &threadCtrl->aq_data->start_active_time); - LOG(PROG_LOG, LOG_NOTICE, "Thread %d,%p (%s) finished in %d.%03ld sec\n", + LOG(PROG_LOG, LOG_DEBUG, "Thread %d,%p (%s) finished in %d.%03ld sec\n", threadCtrl->aq_data->active_thread.ptype, threadCtrl->aq_data->active_thread.thread_id, ptypeName(threadCtrl->aq_data->active_thread.ptype),