aboutsummaryrefslogtreecommitdiff
path: root/py/bc.c
diff options
context:
space:
mode:
authorStefan Naumann <me@stefannaumann.de>2017-07-24 18:55:14 +0200
committerDamien George <damien.p.george@gmail.com>2017-08-15 11:53:36 +1000
commitace9fb54053c29574bdf81ffacc5ddcf9d4b45d9 (patch)
treef3358fcd6ebdc11f632b822d73bb70bd58526de3 /py/bc.c
parenta14ce77b28146526661c79c89b2e6ff6837c2bb0 (diff)
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/bc.c')
-rw-r--r--py/bc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/bc.c b/py/bc.c
index 522eb0aeb..917eba57d 100644
--- a/py/bc.c
+++ b/py/bc.c
@@ -35,7 +35,7 @@
#include "py/bc0.h"
#include "py/bc.h"
-#if 0 // print debugging info
+#if MICROPY_DEBUG_VERBOSE // print debugging info
#define DEBUG_PRINT (1)
#else // don't print debugging info
#define DEBUG_PRINT (0)