chore: add trace logging for mutex locks

This commit is contained in:
Jake Stanger
2023-05-04 20:07:46 +01:00
parent c1ea5fad7e
commit aed04c1ccf
+3 -2
View File
@@ -53,9 +53,10 @@ macro_rules! try_send {
/// ```
#[macro_export]
macro_rules! lock {
($mutex:expr) => {
($mutex:expr) => {{
tracing::trace!("Locking {}", std::stringify!($mutex));
$mutex.lock().expect($crate::error::ERR_MUTEX_LOCK)
};
}};
}
/// Gets a read lock on a `RwLock`.