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 ();