hi, wondering if the new workers logs is supporting console.log only or it will also pickup console.
hi, wondering if the new workers logs is supporting console.log only or it will also pickup console.error?


wrangler tail sees them, so not sure what's up
observability? But not sure how or even if they alert on errors.

import type { APIGatewayProxyHandlerV2 } from "aws-lambda";
export const handler: APIGatewayProxyHandlerV2 = async (event) => {
console.log("Hello World");
return {
statusCode: 200,
body: "Hello World",
};
};wrangler tailobservabilitytry {
throw new Error("test-error");
} catch (e) {
console.error({
message: e.message,
exception: {
stack: e.stack,
name: e.name,
message: e.message,
timestamp: new Date().getTime(),
},
});
}
throw new Error("test-exception");