Provides an attribute proc macro for your fn main() -> Result<(), Box<dyn Error>>
which sends returned errors to log::error!
.
```rust
use logtermination::logtermination;
fn main() -> Result<(), Box
std::fs::metadata("non-existing-file")?; // will call log::error!("No such file or directory (os error 2)") before exiting } ```