WPCOM_VIP_Support_Role::error_log PHP Method

error_log() protected static method

Log errors if WP_DEBUG is defined and true.
protected static error_log ( string $message )
$message string The message to log
    protected static function error_log($message)
    {
        if (defined('WP_DEBUG') && WP_DEBUG) {
            error_log($message);
        }
    }