Magento – Paypal log error

magento-1.9onepage-checkoutpaypal-standard

I am currently trying to figure out why paypal is not working properly.

I found this error in the logs.

2017-06-22T02:18:31+00:00 DEBUG (7): Array (
[url] => https://api-3t.paypal.com/nvp
[getPalDetails] => Array
    (
        [METHOD] => getPalDetails
        [VERSION] => 94.0
        [USER] => ****
        [PWD] => ****
        [SIGNATURE] => ****
        [BUTTONSOURCE] => IWD_SI_Other_OnePage
    )

[response] => Array
    (
        [PAL] => XXXXXXXXXX (-->Merchant ID)
        [LOCALE] => en_AU
        [TIMESTAMP] => 2017-06-22T02:18:31Z
        [CORRELATIONID] => 182c8e5d91387
        [ACK] => Success
        [VERSION] => 94.0
        [BUILD] => 29297572
    )

[__pid] => 7545
)

It states a success but is recorded as a bug.

What do I do to fix this?

I am using magento 1.9.3.3 and Paypal Website Payments Standard (Includes Express Checkout)

The checkout allows guest checkout.

Enable SSL verification set to No.

Best Answer

First of all, it's NOT an error.

As you said that the flow is not interrupted, so I'm sure it's just a setting issue. You turned on the debug mode on Paypal so var/log/debug.log keep printing the data from Paypal. If this debug log caused you some annoyances, you can turn it off by System->Configuration ->Payment Methods (Basic Settings - PayPal Express Checkout)->Off.

Related Topic