From dc6f697995cf4f5e1d0101a1372f49270a78b292 Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 26 Jun 2021 04:26:19 -0400 Subject: [PATCH] interp PoC: less debugging cruft --- src/poc/interp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/poc/interp.c b/src/poc/interp.c index fd614fce5..a5e13215e 100644 --- a/src/poc/interp.c +++ b/src/poc/interp.c @@ -69,7 +69,6 @@ interp(struct notcurses* nc, int cellpixy, int cellpixx){ if(ncvisual_render(nc, ncv, &vopts) == NULL){ return -1; } -notcurses_debug(nc, stderr); notcurses_render(nc); ncplane_destroy(ncvp); ncplane_destroy(scalep); @@ -79,7 +78,7 @@ notcurses_debug(nc, stderr); int main(void){ struct notcurses_options nopts = { - .loglevel = NCLOGLEVEL_TRACE, +// .loglevel = NCLOGLEVEL_TRACE, }; struct notcurses* nc = notcurses_init(&nopts, NULL); if(nc == NULL){