Tiny macro to measure the function execution time in Rust. It uses log
crate, so the consuming code can handle the log easily.
You can measure the execution time of a function in the following way. Your client code needs to consume the log. ```
fn my_function() { }
// It measures the execution time in milliseconds and generate debug
level logs by default.
fn my_function() { } ```
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate. Enjoy!