Skip to content

Commit d10eddf

Browse files
committed
Increase log level for JIT-related messages
1 parent 7d77f81 commit d10eddf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

executor/src/witgen/jit/function_cache.rs

+2
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
225225
known_concrete,
226226
};
227227

228+
log::info!("Calling compiled function for {:?}", cache_key);
228229
self.witgen_functions
229230
.get(&cache_key)
230231
.or_else(|| {
@@ -239,6 +240,7 @@ impl<'a, T: FieldElement> FunctionCache<'a, T> {
239240
.expect("compile_cached() returned false!")
240241
.function
241242
.call(self.fixed_data, mutable_state, values, data);
243+
log::info!("Done calling function");
242244

243245
Ok(true)
244246
}

0 commit comments

Comments
 (0)