From fa765dde5e381938996e54cc71459c5bf02fa8ef Mon Sep 17 00:00:00 2001
From: Viktor Pedersen <viktor@dsv.su.se>
Date: Wed, 8 Sep 2021 11:20:28 +0200
Subject: [PATCH] bug searching

---
 include/Product.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/include/Product.php b/include/Product.php
index ba6611e..ee07a6b 100644
--- a/include/Product.php
+++ b/include/Product.php
@@ -142,8 +142,12 @@ class Product extends Entity {
         }
 
         if($matchAll && array_diff_assoc($terms, $matches)) {
-            var_dump($terms, $matches);
-            // var_dump(expression);
+            print('=== DEBUG $terms: ');
+            var_dump($terms);
+            print(' ===<br>');
+            print('=== DEBUG $matches: ');
+            var_dump($matches);
+            print(' ===<br><br>');
             // var_dump(array_diff_assoc($terms, $matches));
             return array();
         }