[wasm] Make debugprint use debug API

This commit is contained in:
Behdad Esfahbod 2023-02-23 10:49:02 -07:00
parent bb8a04cbad
commit 65efad6b59
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ static void
debugprint (HB_WASM_EXEC_ENV debugprint (HB_WASM_EXEC_ENV
char *the_string) char *the_string)
{ {
printf("%s", the_string); DEBUG_MSG (WASM, exec_env, "%s", the_string);
} }
}} }}
#endif #endif