Matthias Beyer
351849e349
This actually caused an error. When executing `imag ids --verbose trace` for example, the `imag` binary got the default value (as in `--verbose info`) supplied from clap. So far, so good. Problem is that the implementation then forwarded that flag to `imag-ids`, which resulted in the `--verbose` flag to be passed _two times_ to `imag-ids`. Somehow this is really strange, but it does not really matter. First of all: A default of "Info" is still too high IMO. Default should be warnings and errors, but no information printed. We like silent tools, don't we? Second is that the commandline argument forwarding mechanism of `imag` is broken and this was a fix which helped debugging of the brokenness, so this is acutally a step forward in this regard as well. Signed-off-by: Matthias Beyer <mail@beyermatthias.de> |
||
---|---|---|
.. | ||
src | ||
.gitignore | ||
Cargo.toml | ||
README.md |
libimagrt
This library provides utility functionality for the modules and the binary frontends, such as reading and parsing the configuration file, a builder helper for the commandline interface and such.
It also contains the store object and creates it from configuration.
the libimagrt::runtime::Runtime
object is the first complex object that comes
to live in a imag binary.
Long-term TODO
- Merge with
libimagstore