@@ -563,7 +563,7 @@ fn handle_foreign_call(
563563 "aztec_avm_revert" => handle_revert ( avm_instrs, destinations, inputs) ,
564564 "aztec_avm_storageRead" => handle_storage_read ( avm_instrs, destinations, inputs) ,
565565 "aztec_avm_storageWrite" => handle_storage_write ( avm_instrs, destinations, inputs) ,
566- "aztec_utl_log " => handle_debug_log ( avm_instrs, destinations, inputs) ,
566+ "aztec_misc_log " => handle_debug_log ( avm_instrs, destinations, inputs) ,
567567 // Getters.
568568 _ if inputs. is_empty ( ) && destinations. len ( ) == 1 => {
569569 handle_getter_instruction ( avm_instrs, function, destinations, inputs) ;
@@ -1341,7 +1341,7 @@ fn handle_debug_log(
13411341) {
13421342 // We need to handle two flavors here:
13431343 //
1344- // #[oracle(aztec_utl_log )]
1344+ // #[oracle(aztec_misc_log )]
13451345 // unconstrained fn log_oracle<let M: u32, let N: u32>(
13461346 // log_level: u8,
13471347 // msg: str<M>,
@@ -1351,7 +1351,7 @@ fn handle_debug_log(
13511351 //
13521352 // and
13531353 //
1354- //#[oracle(aztec_utl_log )]
1354+ //#[oracle(aztec_misc_log )]
13551355 // unconstrained fn log_slice_oracle<let M: u32>(log_level: u8, msg: str<M>, args: [Field]) {}
13561356 //
13571357 // Luckily, these two flavors have both 4 arguments, since noir inserts a length field for slices before the slice.
0 commit comments