aboutsummaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
authorMarvin Borner2023-04-17 12:37:15 +0200
committerMarvin Borner2023-04-17 12:37:15 +0200
commitc8505852fff816f8e319cb7492ff1fee55f33f23 (patch)
treefc7cb822f53605e0b5835aab8f217bddaa981554 /src/print.c
parentf8e807e657766342ae4931d77edce8f1a5d27b56 (diff)
Added logging and verbosity flag
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
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);
}
}