extmod/modwebrepl: Set debugging by default to off.

That's production setting. Also, extra UART output may affect behavior of
(subpar) network drivers.
This commit is contained in:
Paul Sokolovsky 2016-04-29 19:17:37 +03:00
parent f8170db390
commit 18775d3807
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
#if MICROPY_PY_WEBREPL
#if 1 // print debugging info
#if 0 // print debugging info
#define DEBUG_printf DEBUG_printf
#else // don't print debugging info
#define DEBUG_printf(...) (void)0