diff options
author | Marvin Borner | 2023-04-17 12:37:15 +0200 |
---|---|---|
committer | Marvin Borner | 2023-04-17 12:37:15 +0200 |
commit | c8505852fff816f8e319cb7492ff1fee55f33f23 (patch) | |
tree | fc7cb822f53605e0b5835aab8f217bddaa981554 /src/print.c | |
parent | f8e807e657766342ae4931d77edce8f1a5d27b56 (diff) |
Added logging and verbosity flag
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index ddbb730..d73f9c5 100644 --- a/src/print.c +++ b/src/print.c @@ -4,6 +4,7 @@ #include <stdio.h> #include <print.h> +#include <log.h> void print_bruijn(struct term *term) { @@ -27,7 +28,7 @@ void print_bruijn(struct term *term) printf("<%ld>", term->u.ref.index); break; default: - fprintf(stderr, "Invalid type %d\n", term->type); + fatal("invalid type %d\n", term->type); } } @@ -49,7 +50,7 @@ void print_blc(struct term *term) printf("0"); break; default: - fprintf(stderr, "invalid type %d\n", term->type); + fatal("invalid type %d\n", term->type); } } |