-
Notifications
You must be signed in to change notification settings - Fork 1
Debug
Jean Dubois edited this page May 20, 2024
·
7 revisions
Debug is a lib that contains some debug tools
-
debug.is_debug_enabled: 1 if DEBUG mode is enabled, else 0 -
debug.should_print_context: 1 if PRINT CONTEXT debug option is enabled, else 0 -
debug.should_print_time(new in 0.20.0-beta): 1 if PRINT TIME debug option is enabled, else 0
-
debug.debug_mode_enable()ordebug.enable(): enables DEBUG mode -
debug.debug_mode_disable()ordebug.disable(): disables DEBUG mode -
debug.print_context(): enables PRINT CONTEXT debug option -
debug.stop_print_context(): disables PRINT CONTEXT debug option -
debug.print_time()(new in 0.20.0-beta): enables PRINT TIME debug option -
debug.stop_print_time()(new in 0.20.0-beta): disables PRINT TIME debug option -
debug.enable_all(): enables DEBUG mode with all its options -
debug.disable_all(): disables DEBUG mode and all its options