We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The default should be applied similarly to each SDK, but have a method for configuring this at the SDK level.
For example, a possible approach is:
let mut trace_ctx = adapter.start(&mut linker, &data)?; trace_ctx.set_trace_depth(4); // OR.. avoiding mutability and any additional method surface area: let config = TraceConfig { trace_depth: 4, ..default::Default(), }; let trace_ctx = adapter.start(&mut linker, &data, &config)?;
The text was updated successfully, but these errors were encountered:
Goal is to reduce the depth of profiling. Solution may vary from what's defined here.
Sorry, something went wrong.
wikiwong
No branches or pull requests
The default should be applied similarly to each SDK, but have a method for configuring this at the SDK level.
For example, a possible approach is:
The text was updated successfully, but these errors were encountered: