WPCOM_VIP_Support_Role::error_log PHP 메소드

error_log() 보호된 정적인 메소드

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);
        }
    }