diff --git a/include/Product.php b/include/Product.php
index 329bb3e..398735c 100644
--- a/include/Product.php
+++ b/include/Product.php
@@ -142,9 +142,9 @@ class Product extends Entity {
         }
 
         if($matchAll && array_diff_assoc($terms, $matches)) {
-            print('=== DEBUG $terms ===<br>');
-            var_dump($terms);
-            print('<br><br>');
+            // print('=== DEBUG $terms ===<br>');
+            // var_dump($terms);
+            // print('<br><br>');
             print('=== DEBUG $matches ===<br>');
             var_dump($matches);
             print('<br><br>');
diff --git a/include/SearchPage.php b/include/SearchPage.php
index e092b07..7a8a1d5 100644
--- a/include/SearchPage.php
+++ b/include/SearchPage.php
@@ -30,10 +30,9 @@ class SearchPage extends Page {
         }
         print('<br>');
         foreach(array('user', 'product') as $type) {
-            print('=== DEBUG $type: ');
-            print_r($type);
-            print(' ===<br>');
-            print('<br>');
+            // print('=== DEBUG $type: ');
+            // print_r($type);
+            // print(' ===<br><br>');
             $result = $this->search($type, $this->terms);
             if($result) {
                 $out[$type] = $result;