slog_unwraps 

Syntactic sugar to slog an error before unwrapping. It will add caller file and line information to the log statement, but know that that only makes sense in debug mode. In release mode this information will either be missing or unreliable.
Anyways, this is meant to make your life easier while developping.
At first I had an expects function as well to be able to add context, but I really think you should use the failure
crate, which provides a context method on errors, and it's much cleaner, so expects no longer exists. If you don't
want to use failure, you will have to make sure your errors display sensible messages.
Example
run with cargo run --example basic
use
;