arthas 0.3.0

Arthas is an in-memory structure database.
Documentation
1
2
3
4
5
6
7

#[doc(hidden)]
#[macro_export]
macro_rules! thread_trace {
    ($fmt:tt) => (trace!("{}", format!("{}: {}", ::thread_id::get(), $fmt)));
    ($fmt:tt, $($arg:tt)+) => (trace!("{}", format!("{}: {}", ::thread_id::get(), format!($fmt, $($arg)+))))
}