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() {
186
186
* @return True if we took the semaphore.
187
187
*/
188
188
bool 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 ());
190
190
bool rc = false ;
191
191
if (m_usePthreads) {
192
192
pthread_mutex_lock (&m_pthread_mutex);
@@ -195,7 +195,7 @@ bool FreeRTOS::Semaphore::take(std::string owner) {
195
195
}
196
196
m_owner = owner;
197
197
if (rc) {
198
- log_d (" Semaphore taken: %s" , toString ().c_str ());
198
+ log_v (" Semaphore taken: %s" , toString ().c_str ());
199
199
} else {
200
200
log_e (" Semaphore NOT taken: %s" , toString ().c_str ());
201
201
}
You can’t perform that action at this time.
0 commit comments