diff options
author | Simon Hauser <simon.hauser@helsinki-systems.de> | 2024-06-19T09·30+0200 |
---|---|---|
committer | Simon Hauser <simon.hauser@helsinki-systems.de> | 2024-06-20T10·28+0000 |
commit | bd8d74a3eea461268c3ee089e001022c7d151c14 (patch) | |
tree | 2f32aad8ae405292eca71658f0e0a797a8ad47ef /tvix/cli | |
parent | 1446e3be9991291367a2b0cd7daa1d3c0f86e8b7 (diff) |
feat(tvix/tracing): optional progressbar r/8297
Disable the progressbar on default and provide a interface for optionally enabling the progressbar. Change-Id: I0e31b1957e80cf64a8dcf65c6ceb3713975b8220 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11861 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de> Autosubmit: Simon Hauser <simon.hauser@helsinki-systems.de>
Diffstat (limited to 'tvix/cli')
-rw-r--r-- | tvix/cli/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/cli/src/main.rs b/tvix/cli/src/main.rs index 3ec45bc37250..686513b77cc4 100644 --- a/tvix/cli/src/main.rs +++ b/tvix/cli/src/main.rs @@ -281,6 +281,7 @@ fn main() { let _ = tvix_tracing::TracingBuilder::default() .level(args.log_level) + .enable_progressbar() .build() .expect("unable to set up tracing subscriber"); let tokio_runtime = tokio::runtime::Runtime::new().expect("failed to setup tokio runtime"); |