1
0
Fork 0
forked from wry/wry
wry/utils/src/log_on_drop.rs

7 lines
134 B
Rust

pub struct LogOnDrop(pub &'static str);
impl Drop for LogOnDrop {
fn drop(&mut self) {
log::info!("{}", self.0);
}
}