Update server-everything to use the latest version of the SDK

* In sse.ts & streamableHttp.ts
  - change console.log to console.error
This commit is contained in:
cliffhall
2025-05-06 10:27:49 -04:00
parent 69549cc844
commit e30f30868f
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import express, { Request, Response } from "express";
import { createServer } from "./everything.js";
import { randomUUID } from 'node:crypto';
console.log('Starting Streamable HTTP server...');
console.error('Starting Streamable HTTP server...');
const app = express();