From 722cff93e3c2a7ebd6a2859b23c052669e0f1c94 Mon Sep 17 00:00:00 2001 From: Jimmy Hu Date: Fri, 16 Feb 2024 13:39:23 +0800 Subject: [PATCH] enable tables logging --- .tests/librariestest/Platforms/src/0_00/tables/tables.tbs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.tests/librariestest/Platforms/src/0_00/tables/tables.tbs b/.tests/librariestest/Platforms/src/0_00/tables/tables.tbs index 3b23c98..b56da9e 100644 --- a/.tests/librariestest/Platforms/src/0_00/tables/tables.tbs +++ b/.tests/librariestest/Platforms/src/0_00/tables/tables.tbs @@ -3067,7 +3067,13 @@ end sub '------------------------------------------------------------------------------ #if TBL_DEBUG_PRINT sub tbl_debugprint(byref print_data as string) - if tbl_do_not_debug_print=NO then sys.debugprint(TBL_STAMP+print_data+TBL_CR_LF) + if tbl_do_not_debug_print=NO then + #IFDEF RETARGET_DEBUG_PRINT + sys.trace(TBL_STAMP+print_data+TBL_CR_LF) + #ELSE + sys.debugprint(TBL_STAMP+print_data+TBL_CR_LF) + #ENDIF + end if end sub #endif