smartsendio / woocommerce

Smart Send module for WooCommerce
GNU General Public License v3.0
0 stars 2 forks source link

Refactor debug log structure #22

Open bilfeldt opened 2 years ago

bilfeldt commented 2 years ago

Take inspiration from the plugin WooCommerce Stripe Payment Gateway:

Tasks:

Example from plugin

2019-06-20T09:15:02+00:00 DEBUG 
====Stripe Version: 4.1.15====
====Start Log====
customers/cus_EQmIAnTrI2qAPU/sources request: Array
(
    [limit] => 100
)

====End Log====

2019-06-20T09:15:05+00:00 DEBUG 
====Stripe Version: 4.1.15====
====Start Log====
customers/cus_EQmIAnTrI2qAPU/sources request: Array
(
    [limit] => 100
)

====End Log====

includes/class-wc-stripe-logger.php

<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

/**
 * Log all things!
 *
 * @since 4.0.0
 * @version 4.0.0
 */
class WC_Stripe_Logger {

    public static $logger;
    const WC_LOG_FILENAME = 'woocommerce-gateway-stripe';

    /**
     * Utilize WC logger class
     *
     * @since 4.0.0
     * @version 4.0.0
     */
    public static function log( $message, $start_time = null, $end_time = null ) {
        if ( ! class_exists( 'WC_Logger' ) ) {
            return;
        }

        if ( apply_filters( 'wc_stripe_logging', true, $message ) ) {
            if ( empty( self::$logger ) ) {
                self::$logger = wc_get_logger();
            }

            $settings = get_option( 'woocommerce_stripe_settings' );

            if ( empty( $settings ) || isset( $settings['logging'] ) && 'yes' !== $settings['logging'] ) {
                return;
            }

            if ( ! is_null( $start_time ) ) {

                $formatted_start_time = date_i18n( get_option( 'date_format' ) . ' g:ia', $start_time );
                $end_time             = is_null( $end_time ) ? current_time( 'timestamp' ) : $end_time;
                $formatted_end_time   = date_i18n( get_option( 'date_format' ) . ' g:ia', $end_time );
                $elapsed_time         = round( abs( $end_time - $start_time ) / 60, 2 );

                $log_entry  = "\n" . '====Stripe Version: ' . WC_STRIPE_VERSION . '====' . "\n";
                $log_entry .= '====Stripe Plugin API Version: ' . WC_Stripe_API::STRIPE_API_VERSION . '====' . "\n";
                $log_entry .= '====Start Log ' . $formatted_start_time . '====' . "\n" . $message . "\n";
                $log_entry .= '====End Log ' . $formatted_end_time . ' (' . $elapsed_time . ')====' . "\n\n";

            } else {
                $log_entry  = "\n" . '====Stripe Version: ' . WC_STRIPE_VERSION . '====' . "\n";
                $log_entry .= '====Stripe Plugin API Version: ' . WC_Stripe_API::STRIPE_API_VERSION . '====' . "\n";
                $log_entry .= '====Start Log====' . "\n" . $message . "\n" . '====End Log====' . "\n\n";

            }

            self::$logger->debug( $log_entry, [ 'source' => self::WC_LOG_FILENAME ] );
        }
    }
}