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 f22ceac commit 5cd1f6aCopy full SHA for 5cd1f6a
src/hyperlight_host/benches/benchmarks.rs
@@ -134,6 +134,10 @@ fn sandbox_benchmark(c: &mut Criterion) {
134
135
// Benchmarks the time to create a new sandbox, create a new call context, and drop the call context.
136
group.bench_function("create_sandbox_and_call_context_and_drop", |b| {
137
+ match env_logger::builder().parse_filters("info").try_init() {
138
+ Ok(_) => {}
139
+ Err(_) => {}
140
+ };
141
b.iter(|| create_multiuse_sandbox().new_call_context());
142
});
143
0 commit comments