Skip to content

Commit

Permalink
Update mpprint.h
Browse files Browse the repository at this point in the history
  • Loading branch information
IhorNehrutsa committed Jul 17, 2023
1 parent 9ca9b7f commit 46e171a
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions py/mpprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 46e171a

Please sign in to comment.