Skip to content

Commit 159c0ff

Browse files
committed
disable loggin
1 parent 9b34f70 commit 159c0ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

constants.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
#include <limits.h>
1111
#include <stdbool.h>
1212

13+
//#define _DEBUG
14+
1315
typedef uint8_t byte_t;
1416

1517
enum return_code {
@@ -31,7 +33,5 @@ enum adh_constants {
3133

3234
static const char BIT_1 = '1';
3335
static const char BIT_0 = '0';
34-
#define _DEBUG
35-
3636

3737
#endif //ALGO_CONSTANTS_H

test/test.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static const char * TEST_FILES[] = {
4040
* Main function
4141
*/
4242
int main(int argc, char* argv[]) {
43-
set_log_level(LOG_TRACE);
43+
set_log_level(LOG_INFO);
4444
test_bit_helpers();
4545
test_all_files();
4646
}

0 commit comments

Comments
 (0)