cli: log to stderr

This commit is contained in:
Else, Someone 2025-04-20 17:53:54 +00:00
parent 9de0315810
commit 6df68a7e9c

View file

@ -273,11 +273,11 @@ async fn main() {
for s in samples {
match s {
Err(e) => {
println!("Failed to fetch: {}", e);
eprintln!("Failed to fetch: {}", e);
}
Ok(None) => {}
Ok(Some(ingested)) => {
println!("{:?}", ingested)
eprintln!("{:?}", ingested)
}
}
}