LP384 support in icepack - log_level back to 0

This commit is contained in:
hermitsoft 2017-03-06 01:24:20 +01:00
parent fdf863b791
commit e207307c74
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@
using std::vector;
using std::string;
int log_level = 1; // 0;
int log_level = 0;
#define log(...) fprintf(stderr, __VA_ARGS__);
#define info(...) do { if (log_level > 0) fprintf(stderr, __VA_ARGS__); } while (0)
#define debug(...) do { if (log_level > 1) fprintf(stderr, __VA_ARGS__); } while (0)