fix(tvix/glue): don't emit ret as INFO
This causes a bit too much spam otherwise. Change-Id: If3ced9ddfee7f49453711cd26469d1eb81983c71 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10953 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
06e04381d3
commit
8253d91eaa
1 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ use std::{
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
};
|
};
|
||||||
use tokio::io::AsyncReadExt;
|
use tokio::io::AsyncReadExt;
|
||||||
use tracing::{error, instrument, warn};
|
use tracing::{error, instrument, warn, Level};
|
||||||
use tvix_build::buildservice::BuildService;
|
use tvix_build::buildservice::BuildService;
|
||||||
use tvix_eval::{EvalIO, FileType, StdIO};
|
use tvix_eval::{EvalIO, FileType, StdIO};
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ impl TvixStoreIO {
|
||||||
///
|
///
|
||||||
/// In case there is no PathInfo yet, this means we need to build it
|
/// In case there is no PathInfo yet, this means we need to build it
|
||||||
/// (which currently is stubbed out still).
|
/// (which currently is stubbed out still).
|
||||||
#[instrument(skip(self, store_path), fields(store_path=%store_path), ret, err)]
|
#[instrument(skip(self, store_path), fields(store_path=%store_path), ret(level = Level::TRACE), err)]
|
||||||
async fn store_path_to_node(
|
async fn store_path_to_node(
|
||||||
&self,
|
&self,
|
||||||
store_path: &StorePath,
|
store_path: &StorePath,
|
||||||
|
@ -117,7 +117,7 @@ impl TvixStoreIO {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl EvalIO for TvixStoreIO {
|
impl EvalIO for TvixStoreIO {
|
||||||
#[instrument(skip(self), ret, err)]
|
#[instrument(skip(self), ret(level = Level::TRACE), err)]
|
||||||
fn path_exists(&self, path: &Path) -> io::Result<bool> {
|
fn path_exists(&self, path: &Path) -> io::Result<bool> {
|
||||||
if let Ok((store_path, sub_path)) =
|
if let Ok((store_path, sub_path)) =
|
||||||
StorePath::from_absolute_path_full(&path.to_string_lossy())
|
StorePath::from_absolute_path_full(&path.to_string_lossy())
|
||||||
|
@ -206,7 +206,7 @@ impl EvalIO for TvixStoreIO {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(skip(self), ret, err)]
|
#[instrument(skip(self), ret(level = Level::TRACE), err)]
|
||||||
fn read_dir(&self, path: &Path) -> io::Result<Vec<(bytes::Bytes, FileType)>> {
|
fn read_dir(&self, path: &Path) -> io::Result<Vec<(bytes::Bytes, FileType)>> {
|
||||||
if let Ok((store_path, sub_path)) =
|
if let Ok((store_path, sub_path)) =
|
||||||
StorePath::from_absolute_path_full(&path.to_string_lossy())
|
StorePath::from_absolute_path_full(&path.to_string_lossy())
|
||||||
|
@ -271,7 +271,7 @@ impl EvalIO for TvixStoreIO {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(skip(self), ret, err)]
|
#[instrument(skip(self), ret(level = Level::TRACE), err)]
|
||||||
fn import_path(&self, path: &Path) -> io::Result<PathBuf> {
|
fn import_path(&self, path: &Path) -> io::Result<PathBuf> {
|
||||||
let output_path = self.tokio_handle.block_on(async {
|
let output_path = self.tokio_handle.block_on(async {
|
||||||
tvix_store::import::import_path_as_nar_ca(
|
tvix_store::import::import_path_as_nar_ca(
|
||||||
|
@ -287,7 +287,7 @@ impl EvalIO for TvixStoreIO {
|
||||||
Ok(output_path.to_absolute_path().into())
|
Ok(output_path.to_absolute_path().into())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument(skip(self), ret)]
|
#[instrument(skip(self), ret(level = Level::TRACE))]
|
||||||
fn store_dir(&self) -> Option<String> {
|
fn store_dir(&self) -> Option<String> {
|
||||||
Some("/nix/store".to_string())
|
Some("/nix/store".to_string())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue