log ITransact XML at debug instead of info to make logging credit cards less likely

This commit is contained in:
Graham Knop 2009-01-28 16:39:14 +00:00
parent 9d1fdfd1c6
commit b89bb0740e

View file

@ -232,7 +232,7 @@ sub cancelRecurringPayment {
# Get the payment definition XML
my $xml = $self->_generateCancelRecurXml( $transaction );
$session->errorHandler->info("XML Request: $xml");
$session->errorHandler->debug("XML Request: $xml");
# Post the xml to ITransact
my $response = $self->doXmlRequest( $xml, 1 );
@ -562,7 +562,7 @@ sub processPayment {
# Get the payment definition XML
my $xml = $self->_generatePaymentRequestXML( $transaction );
$session->errorHandler->info("XML Request: $xml");
$session->errorHandler->debug("XML Request: $xml");
# Send the xml to ITransact
my $response = $self->doXmlRequest( $xml );