fix(tvix): use tracing::field::Empty for all indicatif.pb_show

This prevents the field from getting printed to stderr, apparently.

Change-Id: Ia9860e4ff37224003154db88ee5f83103060e626
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12756
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com>
This commit is contained in:
Florian Klink 2024-10-21 15:24:06 +02:00 committed by clbot
parent 0c5ad94914
commit 72bc4e0270
4 changed files with 4 additions and 4 deletions

View file

@ -229,7 +229,7 @@ impl InterpretResult {
/// Interprets the given code snippet, printing out warnings, errors
/// and the result itself. The return value indicates whether
/// evaluation succeeded.
#[instrument(skip_all, fields(indicatif.pb_show=1))]
#[instrument(skip_all, fields(indicatif.pb_show=tracing::field::Empty))]
#[allow(clippy::too_many_arguments)]
pub fn interpret(
tvix_store_io: Rc<TvixStoreIO>,