From ffec00444ff50da69b5404cd35589076cbbd0e3e Mon Sep 17 00:00:00 2001 From: Viktor Pedersen <viktor@dsv.su.se> Date: Wed, 8 Sep 2021 13:48:14 +0200 Subject: [PATCH] cleanup of debug output --- include/Product.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/Product.php b/include/Product.php index ee07a6b..329bb3e 100644 --- a/include/Product.php +++ b/include/Product.php @@ -142,12 +142,12 @@ class Product extends Entity { } if($matchAll && array_diff_assoc($terms, $matches)) { - print('=== DEBUG $terms: '); + print('=== DEBUG $terms ===<br>'); var_dump($terms); - print(' ===<br>'); - print('=== DEBUG $matches: '); + print('<br><br>'); + print('=== DEBUG $matches ===<br>'); var_dump($matches); - print(' ===<br><br>'); + print('<br><br>'); // var_dump(array_diff_assoc($terms, $matches)); return array(); }