update readme,changelog and rename logging arg (#88)

This commit is contained in:
Stephan Dilly 2020-05-28 09:32:08 +02:00
parent f143f09ad8
commit 7ea8f34f68
4 changed files with 6 additions and 7 deletions

View File

@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- support reverse tabbing using shift+tab ([#92](https://github.com/extrawurst/gitui/issues/92))
- switch to using cmd line args instead of `ENV` (`-l` for logging and `--version`) **please convert your GITUI_LOGGING usage** [[@shenek](https://github.com/shenek)] ([#88](https://github.com/extrawurst/gitui/issues/88))
## [0.4.0] - 2020-05-25

View File

@ -2,7 +2,7 @@
.PHONY: debug build-release release-linux-musl test clippy clippy-pedantic install install-debug
debug:
GITUI_LOGGING=true cargo run --features=timing
cargo run --features=timing -- -l
build-release:
cargo build --release

View File

@ -88,7 +88,7 @@ cargo install gitui
to enable logging:
```
GITUI_LOGGING=true gitui
gitui -l
```
this will log to:

View File

@ -227,16 +227,14 @@ fn process_cmdline() -> Result<()> {
.version(crate_version!())
.about(crate_description!())
.arg(
Arg::with_name("gitui-logging")
Arg::with_name("logging")
.help("Stores logging output into a cache directory")
.short("l")
.long("gitui-logging")
.takes_value(false)
.required(false),
.long("logging"),
);
let arg_matches = app.get_matches();
if arg_matches.is_present("gitui-logging") {
if arg_matches.is_present("logging") {
setup_logging()?;
}