cli: log to stderr
This commit is contained in:
parent
9de0315810
commit
6df68a7e9c
1 changed files with 2 additions and 2 deletions
|
@ -273,11 +273,11 @@ async fn main() {
|
||||||
for s in samples {
|
for s in samples {
|
||||||
match s {
|
match s {
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("Failed to fetch: {}", e);
|
eprintln!("Failed to fetch: {}", e);
|
||||||
}
|
}
|
||||||
Ok(None) => {}
|
Ok(None) => {}
|
||||||
Ok(Some(ingested)) => {
|
Ok(Some(ingested)) => {
|
||||||
println!("{:?}", ingested)
|
eprintln!("{:?}", ingested)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue