cleanup of debug output

This commit is contained in:
Viktor Pedersen 2021-09-08 13:48:14 +02:00
parent a2a20b0b71
commit ffec00444f

@ -142,12 +142,12 @@ class Product extends Entity {
} }
if($matchAll && array_diff_assoc($terms, $matches)) { if($matchAll && array_diff_assoc($terms, $matches)) {
print('=== DEBUG $terms: '); print('=== DEBUG $terms ===<br>');
var_dump($terms); var_dump($terms);
print(' ===<br>'); print('<br><br>');
print('=== DEBUG $matches: '); print('=== DEBUG $matches ===<br>');
var_dump($matches); var_dump($matches);
print(' ===<br><br>'); print('<br><br>');
// var_dump(array_diff_assoc($terms, $matches)); // var_dump(array_diff_assoc($terms, $matches));
return array(); return array();
} }