Skip to content

Commit c240104

Browse files
print error and return ok
1 parent 9f89d30 commit c240104

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/parseable/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,11 @@ impl Parseable {
418418

419419
// Check if either stream creation failed
420420
if internal_stream_result.is_err() || billing_stream_result.is_err() {
421+
tracing::error!(
422+
"Failed to create internal streams: {:?}, {:?}",
423+
internal_stream_result.as_ref().err(),
424+
billing_stream_result.as_ref().err()
425+
);
421426
return Ok(());
422427
}
423428

0 commit comments

Comments
 (0)