PayPal\Log\PayPalLogger::log PHP Method

log() public method

public log ( $level, $message, array $context = [] )
$context array
    public function log($level, $message, array $context = array())
    {
        if ($this->isLoggingEnabled) {
            // Checks if the message is at level below configured logging level
            if (array_search($level, $this->loggingLevels) <= array_search($this->loggingLevel, $this->loggingLevels)) {
                error_log("[" . date('d-m-Y h:i:s') . "] " . $this->loggerName . " : " . strtoupper($level) . ": {$message}\n", 3, $this->loggerFile);
            }
        }
    }