From a63a5f7fe187edd5bf60c12a9c8e078cd2234e73 Mon Sep 17 00:00:00 2001 From: Nathan Pratta Teodosio Date: Mon, 26 Sep 2022 12:58:55 -0300 Subject: [PATCH] Enable LIBSPEECHD_DEBUG to debug merge request --- src/api/c/libspeechd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/c/libspeechd.c b/src/api/c/libspeechd.c index 671ccef1..3f74cb76 100644 --- a/src/api/c/libspeechd.c +++ b/src/api/c/libspeechd.c @@ -53,7 +53,7 @@ #include "libspeechd.h" /* Comment/uncomment to switch debugging on/off */ -// #define LIBSPEECHD_DEBUG 1 +#define LIBSPEECHD_DEBUG 1 /* Unless there is an fatal error, it doesn't print anything */ #define SPD_FATAL(msg) { printf("Fatal error (libspeechd) [%s:%d]:"msg, __FILE__, __LINE__); fflush(stdout); exit(EXIT_FAILURE); }