We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f89d30 commit c240104Copy full SHA for c240104
src/parseable/mod.rs
@@ -418,6 +418,11 @@ impl Parseable {
418
419
// Check if either stream creation failed
420
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
+ );
426
return Ok(());
427
}
428
0 commit comments