diff --git a/CHANGELOG.md b/CHANGELOG.md index 89583a84..f182beb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Put back `warn` the default log level. [#522] + + Since logs are sent to `stderr`, warnings can be easily discarded by prepending commands with `RUST_LOG=off` or by appending commands with `2>/dev/null`. + ### Fixed - Fixed permissions issues when using `install.sh`. [#515] @@ -941,4 +947,5 @@ Few major concepts changed: [#496]: https://github.com/pimalaya/himalaya/issues/496 [#508]: https://github.com/pimalaya/himalaya/issues/508 [#515]: https://github.com/pimalaya/himalaya/issues/515 +[#522]: https://github.com/pimalaya/himalaya/issues/522 [core#10]: https://github.com/pimalaya/core/issues/10 diff --git a/Cargo.lock b/Cargo.lock index 0eedf354..2527390f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3133,8 +3133,7 @@ dependencies = [ [[package]] name = "pimalaya-tui" version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "921add1c8f4ca3ad7f5ff3ea6f839ae08466ad39090627914db73ab8473bc4c7" +source = "git+https://github.com/pimalaya/tui#82fea1ad7d76a0b32806f2a4fc92d635de9a3aeb" dependencies = [ "async-trait", "clap", diff --git a/Cargo.toml b/Cargo.toml index 818f1161..0a4d8e8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,3 +55,6 @@ toml = "0.8" tracing = "0.1" url = "2.2" uuid = { version = "0.8", features = ["v4"] } + +[patch.crates-io] +pimalaya-tui.git = "https://github.com/pimalaya/tui"