mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
Fix stringify objects
This commit is contained in:
parent
b3ffa1030d
commit
f08d6c089c
1 changed files with 2 additions and 2 deletions
|
@ -67,10 +67,10 @@ class FrontendLoggerEndpoint implements EndpointInterface {
|
|||
|
||||
switch ( $level ) {
|
||||
case 'error':
|
||||
$this->logger->error( '[AXO] ' . esc_html( $data['log']['message'] ) );
|
||||
$this->logger->error( '[AXO] ' . $data['log']['message'] );
|
||||
break;
|
||||
default:
|
||||
$this->logger->info( '[AXO] ' . esc_html( $data['log']['message'] ) );
|
||||
$this->logger->info( '[AXO] ' . $data['log']['message'] );
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue