fix(tracing): make env filter warn the default

Refs: #522
This commit is contained in:
Clément DOUIN
2025-01-09 18:28:08 +01:00
parent 1928b36859
commit 082e680b32
3 changed files with 11 additions and 2 deletions
+7
View File
@@ -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
Generated
+1 -2
View File
@@ -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",
+3
View File
@@ -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"