From c32106e1074daeebc509fdab1f458db501246c5b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Jun 2015 09:34:36 -0700 Subject: [PATCH] CLI2: Removed debug diagnostics for ::analyze --- src/CLI2.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 83f656415..eadaca99e 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -408,10 +408,7 @@ void CLI2::handleTerminator () void CLI2::analyze () { if (context.config.getInteger ("debug.parser") >= 3) - { - context.debug ("---------------------------------------------------------------------------------"); context.debug (dump ("CLI2::analyze start")); - } // Process _original_args. _args.clear (); @@ -430,11 +427,7 @@ void CLI2::analyze () } if (context.config.getInteger ("debug.parser") >= 3) - { - context.debug (dump ()); - context.debug ("CLI2::analyze end"); - context.debug ("---------------------------------------------------------------------------------"); - } + context.debug (dump ("CLI2::analyze end")); } /*