From 49aadb763647ffddbefd9cd844e52c291ff90aa7 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 26 Apr 2014 13:31:59 -0700 Subject: [PATCH] Command - Added filter expression debug diagnostics. --- src/commands/Command.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/commands/Command.cpp b/src/commands/Command.cpp index 816f9cae7..bd5f155fd 100644 --- a/src/commands/Command.cpp +++ b/src/commands/Command.cpp @@ -297,6 +297,9 @@ void Command::filter (const std::vector & input, std::vector & outpu context.debug (t->dump ()); } + std::string filterExpr = context.a3t.getFilterExpression (); + context.debug ("\033[1;37;42mFILTER\033[0m " + filterExpr); + if (filt.size ()) { E9 e (filt); @@ -327,6 +330,9 @@ void Command::filter (std::vector & output) context.debug (t->dump ()); } + std::string filterExpr = context.a3t.getFilterExpression (); + context.debug ("\033[1;37;42mFILTER\033[0m " + filterExpr); + if (filt.size ()) { context.timer_filter.stop ();