File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ void FreeRTOS::Semaphore::giveFromISR() {
186186 * @return True if we took the semaphore.
187187 */
188188bool FreeRTOS::Semaphore::take (std::string owner) {
189- log_d (" Semaphore taking: %s for %s" , toString ().c_str (), owner.c_str ());
189+ log_v (" Semaphore taking: %s for %s" , toString ().c_str (), owner.c_str ());
190190 bool rc = false ;
191191 if (m_usePthreads) {
192192 pthread_mutex_lock (&m_pthread_mutex);
@@ -195,7 +195,7 @@ bool FreeRTOS::Semaphore::take(std::string owner) {
195195 }
196196 m_owner = owner;
197197 if (rc) {
198- log_d (" Semaphore taken: %s" , toString ().c_str ());
198+ log_v (" Semaphore taken: %s" , toString ().c_str ());
199199 } else {
200200 log_e (" Semaphore NOT taken: %s" , toString ().c_str ());
201201 }
You can’t perform that action at this time.
0 commit comments