From 67673cb608baa4f9514532cce37300d51937b2db Mon Sep 17 00:00:00 2001 From: ccremers Date: Mon, 18 Oct 2004 13:49:20 +0000 Subject: [PATCH] - No more warning for output in standard debug mode. --- src/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 2d0929a..a10eb87 100644 --- a/src/main.c +++ b/src/main.c @@ -560,7 +560,10 @@ main (int argc, char **argv) warning ("-m2 is only supported for constraint logic programming."); } #ifdef DEBUG - warning ("Selected output method is %i", sys->output); + if (DEBUGL (4)) + { + warning ("Selected output method is %i", sys->output); + } #endif if (sys->engine == ARACHNE_ENGINE)