We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I encountered an error in Cloudflare Workers. After looking into it, I found that it was caused by pino.symbols always being undefined.
import pino from "pino" export default { async fetch(request, env, ctx): Promise<Response> { console.log("pino.symbols", pino.symbols) // got undefined return new Response("Hello World!") }, } satisfies ExportedHandler
minimal reproduction
The text was updated successfully, but these errors were encountered:
Please provide a reproduction in JavaScript.
Sorry, something went wrong.
Do you mean that I should not use TypeScript?
I mean that I want to see the issue exhibited in JavaScript.
We do not official support cloudflare workers. If things are missing/problematic, you should be reporting to them,
No branches or pull requests
Hi, I encountered an error in Cloudflare Workers.
After looking into it, I found that it was caused by pino.symbols always being undefined.
minimal reproduction
The text was updated successfully, but these errors were encountered: