diff options
author | Stefan Naumann <me@stefannaumann.de> | 2017-07-24 18:55:14 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-08-15 11:53:36 +1000 |
commit | ace9fb54053c29574bdf81ffacc5ddcf9d4b45d9 (patch) | |
tree | f3358fcd6ebdc11f632b822d73bb70bd58526de3 /py/malloc.c | |
parent | a14ce77b28146526661c79c89b2e6ff6837c2bb0 (diff) | |
download | micropython-ace9fb54053c29574bdf81ffacc5ddcf9d4b45d9.tar.gz micropython-ace9fb54053c29574bdf81ffacc5ddcf9d4b45d9.zip |
py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.
It enables all the DEBUG_printf outputs in the py/ source code.
Diffstat (limited to 'py/malloc.c')
-rw-r--r-- | py/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/malloc.c b/py/malloc.c index e679e20926..af4ccf2e81 100644 --- a/py/malloc.c +++ b/py/malloc.c @@ -32,7 +32,7 @@ #include "py/misc.h" #include "py/mpstate.h" -#if 0 // print debugging info +#if MICROPY_DEBUG_VERBOSE // print debugging info #define DEBUG_printf DEBUG_printf #else // don't print debugging info #define DEBUG_printf(...) (void)0 |