diff options
author | Alex Auvolat <alex@adnab.me> | 2022-11-29 22:23:27 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-11-29 22:23:27 +0100 |
commit | 26121bb619c48328fa484ba6752402fc1d8115b7 (patch) | |
tree | c81740bf5fe4952ec5e4124a3612eb05af31abf8 | |
parent | 280330ac72a12fbfb9c22018bb33d5a490c7a016 (diff) | |
download | garage-26121bb619c48328fa484ba6752402fc1d8115b7.tar.gz garage-26121bb619c48328fa484ba6752402fc1d8115b7.zip |
Fix logs appearing twicefix-logs
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | Cargo.nix | 1 | ||||
-rw-r--r-- | src/garage/Cargo.toml | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index b634d85f..00000000 --- a/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -*.pdf filter=lfs diff=lfs merge=lfs -text @@ -5398,7 +5398,6 @@ in [ "attributes" ] [ "default" ] [ "log" ] - [ "log-always" ] [ "std" ] [ "tracing-attributes" ] ]; diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml index 69852db7..f9d7cf3a 100644 --- a/src/garage/Cargo.toml +++ b/src/garage/Cargo.toml @@ -36,7 +36,7 @@ bytesize = "1.1" timeago = "0.3" parse_duration = "2.1" hex = "0.4" -tracing = { version = "0.1.30", features = ["log-always"] } +tracing = { version = "0.1.30" } tracing-subscriber = { version = "0.3", features = ["env-filter"] } rand = "0.8" async-trait = "0.1.7" |