From 46e171a4fa2f40ac5d2984a1d0c72ea37f65e192 Mon Sep 17 00:00:00 2001 From: IhorNehrutsa <70886343+IhorNehrutsa@users.noreply.github.com> Date: Mon, 17 Jul 2023 15:30:20 +0300 Subject: [PATCH] Update mpprint.h --- py/mpprint.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/py/mpprint.h b/py/mpprint.h index 876fc374dfd8..6b8d2821ed80 100755 --- a/py/mpprint.h +++ b/py/mpprint.h @@ -129,13 +129,3 @@ void foo() { // Then add MP_PRN(3, ...) and when gets too much messages then change some messages to the next level MP_PRN(4, ...), or MP_PRN(2, ...) etc. // Then you may change MP_PRN_LEVEL to 2(reduce printing), and finally to 0(supress printing). */ - -#if 0 -#if MICROPY_DEBUG_VERBOSE // print debugging info -#define DEBUG_PRINT (1) -#define DEBUG_printf(...) MP_PRN(MP_PRN_DEBUG, __VA_ARGS__) -#else // don't print debugging info -#define DEBUG_PRINT (0) -#define DEBUG_printf(...) -#endif -#endif