summaryrefslogtreecommitdiffabout
path: root/lib
Side-by-side diff
Diffstat (limited to 'lib') (more/less context) (ignore whitespace changes)
-rw-r--r--lib/discovery.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/discovery.cc b/lib/discovery.cc
index 984e308..bd1f917 100644
--- a/lib/discovery.cc
+++ b/lib/discovery.cc
@@ -255,5 +255,8 @@ namespace opkele {
throw exception_tidy(OPKELE_CP_ "failed to create htmltidy document");
-#ifndef NDEBUG
- td.opt_set(TidyQuiet,false);
+#ifdef NDEBUG
+ td.opt_set(TidyQuiet,true);
td.opt_set(TidyShowWarnings,false);
+#else /* NDEBUG */
+ td.opt_set(TidyQuiet,false);
+ td.opt_set(TidyShowWarnings,true);
#endif /* NDEBUG */