fix(tvix/store): log to stderr, not stdout
This leaves some space in stdout to provide actual meaningful output. Also, rename print_node to log_node because that's what it does, it's using the logger to log out more detailed info. Change-Id: Ic64a6330dbfcdc63eb4198067a5c5e47b841b9a5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9336 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com> Reviewed-by: Adam Joseph <adam@westernsemico.com>
This commit is contained in:
parent
d111a0fda8
commit
b52bb6e791
1 changed files with 5 additions and 4 deletions
|
@ -110,7 +110,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
.with(if cli.json {
|
.with(if cli.json {
|
||||||
Some(
|
Some(
|
||||||
tracing_subscriber::fmt::Layer::new()
|
tracing_subscriber::fmt::Layer::new()
|
||||||
.with_writer(io::stdout.with_max_level(level))
|
.with_writer(io::stderr.with_max_level(level))
|
||||||
.json(),
|
.json(),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
@ -119,7 +119,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
.with(if !cli.json {
|
.with(if !cli.json {
|
||||||
Some(
|
Some(
|
||||||
tracing_subscriber::fmt::Layer::new()
|
tracing_subscriber::fmt::Layer::new()
|
||||||
.with_writer(io::stdout.with_max_level(level))
|
.with_writer(io::stderr.with_max_level(level))
|
||||||
.pretty(),
|
.pretty(),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
@ -241,7 +241,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
// from there (it might contain additional signatures).
|
// from there (it might contain additional signatures).
|
||||||
let path_info = path_info_service.put(path_info)?;
|
let path_info = path_info_service.put(path_info)?;
|
||||||
|
|
||||||
print_node(&path_info.node.unwrap().node.unwrap(), &path);
|
log_node(&path_info.node.unwrap().node.unwrap(), &path);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
});
|
});
|
||||||
task
|
task
|
||||||
|
@ -302,7 +303,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_node(node: &Node, path: &Path) {
|
fn log_node(node: &Node, path: &Path) {
|
||||||
match node {
|
match node {
|
||||||
Node::Directory(directory_node) => {
|
Node::Directory(directory_node) => {
|
||||||
info!(
|
info!(
|
||||||
|
|
Loading…
Reference in a new issue