chore: add trace logging for mutex locks

This commit is contained in:
Jake Stanger
2023-04-29 22:09:14 +01:00
parent c1ea5fad7e
commit aed04c1ccf

View File

@@ -53,9 +53,10 @@ macro_rules! try_send {
/// ``` /// ```
#[macro_export] #[macro_export]
macro_rules! lock { macro_rules! lock {
($mutex:expr) => { ($mutex:expr) => {{
tracing::trace!("Locking {}", std::stringify!($mutex));
$mutex.lock().expect($crate::error::ERR_MUTEX_LOCK) $mutex.lock().expect($crate::error::ERR_MUTEX_LOCK)
}; }};
} }
/// Gets a read lock on a `RwLock`. /// Gets a read lock on a `RwLock`.