Setting loging level to VERBOSE on Semaphore::take (#3545)
This commit is contained in:
		
							parent
							
								
									915d45de7d
								
							
						
					
					
						commit
						6e77f7f3e5
					
				| @ -186,7 +186,7 @@ void FreeRTOS::Semaphore::giveFromISR() { | ||||
|  * @return True if we took the semaphore. | ||||
|  */ | ||||
| bool FreeRTOS::Semaphore::take(std::string owner) { | ||||
| 	log_d("Semaphore taking: %s for %s", toString().c_str(), owner.c_str()); | ||||
| 	log_v("Semaphore taking: %s for %s", toString().c_str(), owner.c_str()); | ||||
| 	bool rc = false; | ||||
| 	if (m_usePthreads) { | ||||
| 		pthread_mutex_lock(&m_pthread_mutex); | ||||
| @ -195,7 +195,7 @@ bool FreeRTOS::Semaphore::take(std::string owner) { | ||||
| 	} | ||||
| 	m_owner = owner; | ||||
| 	if (rc) { | ||||
| 		log_d("Semaphore taken:  %s", toString().c_str()); | ||||
| 		log_v("Semaphore taken:  %s", toString().c_str()); | ||||
| 	} else { | ||||
| 		log_e("Semaphore NOT taken:  %s", toString().c_str()); | ||||
| 	} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user