about summary refs log tree commit diff
path: root/tvix/castore
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2024-10-03T18·02+0200
committerclbot <clbot@tvl.fyi>2024-10-04T16·31+0000
commit7fedfe1cde1d1b021c50f3cbd4f620027c85a7ce (patch)
tree4ad0929a4ebd567f0790d053d0624f26164fa342 /tvix/castore
parent0ef1b9bc6a9ad8659e30d2142675eb0824e3c3fe (diff)
feat(tvix/[ca]store): Add logging support to redb r/8756
We wanted to enable this earlier but the log level of many of the
messages in redb were too high, they've now been downgraded, so we can
enable logs from redb.

Context on the fix and release:
 - https://github.com/cberner/redb/pull/828
 - https://github.com/cberner/redb/releases/tag/v2.1.2

Change-Id: I8635e8a0bcb01a7d0b580387ac9134ccdd0205f3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12568
Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/castore')
-rw-r--r--tvix/castore/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/Cargo.toml b/tvix/castore/Cargo.toml
index 2a9fa9f142ec..00f4e44e5b70 100644
--- a/tvix/castore/Cargo.toml
+++ b/tvix/castore/Cargo.toml
@@ -40,7 +40,7 @@ pin-project = { workspace = true }
 erased-serde = { workspace = true }
 serde_tagged = { workspace = true }
 hyper-util = { workspace = true }
-redb = { workspace = true }
+redb = { workspace = true, features = ["logging"] }
 bigtable_rs = { workspace = true, optional = true }
 fuse-backend-rs = { workspace = true, optional = true }
 libc = { workspace = true, optional = true }