X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=extern%2Fipn.php;h=c01ed15fd595660da331d8488ca3fda1fa8cf1f4;hb=07565b0adfb517eb40b48f8deaac1023ce303c68;hp=4ec25af6e68f957015bf6e937f2b142dbcdab9d6;hpb=5563fe43b44b754e6441841a5d92664470b20366;p=civicrm-core.git diff --git a/extern/ipn.php b/extern/ipn.php index 4ec25af6e6..c01ed15fd5 100644 --- a/extern/ipn.php +++ b/extern/ipn.php @@ -38,11 +38,13 @@ require_once '../civicrm.config.php'; /* Cache the real UF, override it with the SOAP environment */ $config = CRM_Core_Config::singleton(); - +$log = new CRM_Utils_SystemLogger(); if (empty($_GET)) { + $log->alert('payment_notification processor_name=PayPal', $_REQUEST); $paypalIPN = new CRM_Core_Payment_PayPalProIPN($_REQUEST); } else { + $log->alert('payment_notification PayPal_Standard', $_REQUEST); $paypalIPN = new CRM_Core_Payment_PayPalIPN(); // @todo upgrade standard per Pro }