From 9f2efa67c2ba79b16e5939597a142d8c717c92d3 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 13 Jul 2015 00:22:19 -0400 Subject: [PATCH] CLI2: Reduced verbosity of debug output --- src/CLI2.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 76e094b25..ac718cef1 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -510,7 +510,7 @@ void CLI2::demoteDOM () void CLI2::analyze () { if (context.config.getInteger ("debug.parser") >= 3) - context.debug (dump ("CLI2::analyze start")); + context.debug (dump ("CLI2::analyze")); // Process _original_args. _args.clear (); @@ -528,9 +528,6 @@ void CLI2::analyze () } canonicalizeNames (); - - if (context.config.getInteger ("debug.parser") >= 3) - context.debug (dump ("CLI2::analyze end")); } ////////////////////////////////////////////////////////////////////////////////