Debug lines commented out
authorRoland Häder <roland@mxchange.org>
Wed, 11 Mar 2009 03:28:14 +0000 (03:28 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 11 Mar 2009 03:28:14 +0000 (03:28 +0000)
inc/classes/main/filter/class_FilterChain.php

index 447772648b01454cfca393573ca9288dd4b9ec3f..9e22ee9f9701c2c2b261b04f422a5988cf75e8c1 100644 (file)
@@ -73,13 +73,13 @@ class FilterChain extends BaseFrameworkSystem {
         */
        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;