commit | ace9fb54053c29574bdf81ffacc5ddcf9d4b45d9 | [log] [tgz] |
---|---|---|
author | Stefan Naumann <me@stefannaumann.de> | Mon Jul 24 18:55:14 2017 +0200 |
committer | Damien George <damien.p.george@gmail.com> | Tue Aug 15 11:53:36 2017 +1000 |
tree | f3358fcd6ebdc11f632b822d73bb70bd58526de3 | |
parent | a14ce77b28146526661c79c89b2e6ff6837c2bb0 [diff] [blame] |
py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE. It enables all the DEBUG_printf outputs in the py/ source code.
diff --git a/py/gc.c b/py/gc.c index 7253b7d..3a505e9 100644 --- a/py/gc.c +++ b/py/gc.c
@@ -35,7 +35,7 @@ #if MICROPY_ENABLE_GC -#if 0 // print debugging info +#if MICROPY_DEBUG_VERBOSE // print debugging info #define DEBUG_PRINT (1) #define DEBUG_printf DEBUG_printf #else // don't print debugging info