Skip to content

Commit

Permalink
update readme,changelog and rename logging arg (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Dilly committed May 28, 2020
1 parent f143f09 commit 7ea8f34
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ cargo install gitui

to enable logging:
```
GITUI_LOGGING=true gitui
gitui -l
```

this will log to:
Expand Down
8 changes: 3 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()?;
}

Expand Down

0 comments on commit 7ea8f34

Please sign in to comment.