diff options
author | Florian Klink <flokli@flokli.de> | 2024-07-21T00·23+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-07-21T11·26+0000 |
commit | ba38883a4fd27cb28820997f464c2289905bd5a5 (patch) | |
tree | a30e18f2a40b32e5d8a89b0e7ab21449d3ed8eec | |
parent | 98f59cb8285ebd35f4d4e93612a725ec7c2928a2 (diff) |
fix(tvix/nar-bridge): remove leftover debug statement r/8387
Change-Id: Ie6fb822e1a4b76f2f6aef15bbe846e0a89c644fb Reviewed-on: https://cl.tvl.fyi/c/depot/+/11999 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: yuka <yuka@yuka.dev>
-rw-r--r-- | tvix/nar-bridge/src/narinfo.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tvix/nar-bridge/src/narinfo.rs b/tvix/nar-bridge/src/narinfo.rs index b985a37c9f8e..4706be64d5b4 100644 --- a/tvix/nar-bridge/src/narinfo.rs +++ b/tvix/nar-bridge/src/narinfo.rs @@ -1,7 +1,7 @@ use axum::http::StatusCode; use bytes::Bytes; use nix_compat::{narinfo::NarInfo, nixbase32}; -use tracing::{info, instrument, warn, Span}; +use tracing::{instrument, warn, Span}; use tvix_castore::proto::{self as castorepb, node::Node}; use tvix_store::proto::PathInfo; @@ -135,8 +135,6 @@ pub async fn put( match maybe_root_node { Some(root_node) => { - info!(narinfo.store_path=%narinfo.store_path, narinfo.store_path=?narinfo.store_path, "NARINFO STORE PATH"); - // Set the root node from the lookup. // We need to rename the node to the narinfo storepath basename, as // that's where it's stored in PathInfo. |