From: Andrew Engelbrecht Date: Fri, 24 Jul 2020 17:12:17 +0000 (-0400) Subject: more verbose fraud blocking log messages X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=fda7dc3772b3c3b21a2a9adcc4c7bc3f3c9c72aa;p=trustcommerce.git more verbose fraud blocking log messages this helps us know which rule triggered the blacklist for that transaction. this helps us know whether our rules are working properly. --- diff --git a/CRM/Core/Payment/TrustCommerce.php b/CRM/Core/Payment/TrustCommerce.php index 41a2705..55e0d73 100644 --- a/CRM/Core/Payment/TrustCommerce.php +++ b/CRM/Core/Payment/TrustCommerce.php @@ -323,11 +323,11 @@ class CRM_Core_Payment_TrustCommerce extends CRM_Core_Payment { // quidam 18/Jun/2020 // block brazil small donations if(($tc_params['country'] == 'BR') && ($tc_params['amount'] < 2000)) { - error_log("TrustCommerce: _isParamsBlacklisted() triggered"); + error_log("TrustCommerce: _isParamsBlacklisted() triggered by BR country"); return TRUE; } if($tc_params['address1'] == '230 Motley Dr') { - error_log("TrustCommerce: _isParamsBlacklisted() triggered"); + error_log("TrustCommerce: _isParamsBlacklisted() triggered by 230 Motley Dr address"); return TRUE; } return FALSE;