*/
public function processFilters (Requestable $requestInstance, Responseable $responseInstance) {
// Run all filters
- /* DEBUG */ echo "COUNT=".count($this->filters)."<br />\n";
+ //* DEBUG */ echo "COUNT=".count($this->filters)."<br />\n";
foreach ($this->filters as $filterInstance) {
// Try to execute this filter
try {
- /* DEBUG */ echo "FILTER: ".$filterInstance->__toString().": Processing started.<br />\n";
+ //* DEBUG */ echo "FILTER: ".$filterInstance->__toString().": Processing started.<br />\n";
$filterInstance->execute($requestInstance, $responseInstance);
- /* DEBUG */ echo "FILTER: ".$filterInstance->__toString().": Processing ended.<br />\n";
+ //* DEBUG */ echo "FILTER: ".$filterInstance->__toString().": Processing ended.<br />\n";
} catch (FilterChainException $e) {
// This exception can be thrown to just skip any further processing
break;