diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-29 19:17:37 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-29 19:17:37 +0300 |
commit | 18775d380758c21365da9454c034df7e71f1a9e7 (patch) | |
tree | 17f743e5bb70040a405e7277360a1262318c814a /extmod/modwebrepl.c | |
parent | f8170db39088d577ab095f28b3ae12ae8c604fe5 (diff) |
extmod/modwebrepl: Set debugging by default to off.
That's production setting. Also, extra UART output may affect behavior of
(subpar) network drivers.
Diffstat (limited to 'extmod/modwebrepl.c')
-rw-r--r-- | extmod/modwebrepl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modwebrepl.c b/extmod/modwebrepl.c index a76016e63..b3ee6ce3e 100644 --- a/extmod/modwebrepl.c +++ b/extmod/modwebrepl.c @@ -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 |