%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/knwn/wp-content/plugins/wpsynchro/includes/Logger/
Upload File :
Create Path :
Current File : /var/www/knwn/wp-content/plugins/wpsynchro/includes/Logger/LoggerTrait.php

<?php

/**
 *  Global logger trait - Provides file logging to all
 */

namespace WPSynchro\Logger;

trait LoggerTrait
{
    public $logger = null;

    /**
     *  Log data
     */
    public function log($level, $message, $context = "")
    {
        if ($this->logger === null) {
            global $wpsynchro_container;
            $this->logger = $wpsynchro_container->get('class.Logger');
        }
        $this->logger->log($level, $message, $context);
    }
}

Zerion Mini Shell 1.0