Resolves #18
User perspective
The command line options -v / --verbose allows increasing the log level and -q / --quiet to decrease it (See also clap_verbosity_flag documentation).
Developer perspective
Logging with the standard log crate with a simple logger which writes to stderr or stdout depending on the log level. This PR adds no tests because it is only a general configuration change and a switch from println! to info! for the output, which is not relevant for testing.
Resolves #18
### User perspective
The command line options `-v` / `--verbose` allows increasing the log level and `-q` / `--quiet` to decrease it (See also [clap_verbosity_flag documentation](https://docs.rs/clap-verbosity-flag/3.0.4/clap_verbosity_flag/index.html#using---verbose-and---quiet-flags)).
### Developer perspective
Logging with the standard [log crate](https://crates.io/crates/log) with a [simple logger](https://crates.io/crates/simplelog) which writes to `stderr` or `stdout` depending on the log level. This PR adds no tests because it is only a general configuration change and a switch from `println!` to `info!` for the output, which is not relevant for testing.