I think the error is kind of self explanatory isn't it? you are trying to serialize and pass that wh
I think the error is kind of self explanatory isn't it? you are trying to serialize and pass that when it can't be serialized
console.log({ message: 'Some message' }), the output is pretty-printed and observability treats each line as a separate log, e.g."message": "{""message": "message: 'Some message'""message": "}""message": "{ message: 'Some message' }"process.stdout.write(JSON.stringify({ message: 'Some message' })) doesn't seem to emit any observability logs at all?? Am I doing something wrong?



stop() (or destroy()) then start() it again?startAndWaitForPorts




wrangler containers images listX
•11/15/25, 12:27 AM
Failed to start container: The container is not running, consider calling start()Failed to start container: The container is not running, consider calling start()console.log({ message: 'Some message' })"message": "{""message": "message: 'Some message'""message": "}""message": "{ message: 'Some message' }"process.stdout.write(JSON.stringify({ message: 'Some message' }))start()startAndWaitForPortswrangler containers images list await container.startAndWaitForPorts({
ports: [8080],
startOptions: {
enableInternet: true,
...c.env,
},
});