1
0
Fork 0
forked from wry/wry
wry/src/utils/log_on_drop.rs
2022-05-01 21:44:09 +02:00

7 lines
134 B
Rust

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