diff --git a/server.ts b/server.ts index 05a9e00..b920157 100644 --- a/server.ts +++ b/server.ts @@ -574,7 +574,7 @@ app.get("/api/properties/:id", async (c: Context) => { app.post("/", async (c: Context) => { const data = await c.req.json(); - console.info("Received message:", JSON.stringify(data, null, 2)); + console.info("Received message:", data.type); await sendMessage({ kv, data, options: { delay: 5000 } }); return c.text("Hono!"); });