I have one table in which I have auth
I have one table in which I have auth column when i query it into worker and fetch value in that column it gets converted in to **. what is this and how can I get actual value?

2 Replies
are you reading this from workers logs?
Each log entry contains an event with a list of logs, exceptions, and request headers if it was triggered by an HTTP request. We also automatically redact sensitive URLs and headers such as Authorization, Cookie, or anything else that appears to have a sensitive name.-- https://blog.cloudflare.com/introducing-workers-dashboard-logs/#view-logs-just-a-click-away
The Cloudflare Blog
Introducing logs from the dashboard for Cloudflare Workers
Many developers know the feeling: “It worked in the local testing suite, it worked in our staging environment, but… it’s broken in production?” Testing can reduce mistakes and debugging can help find them, but logs give us the tools to understand and improve what we are creating.
Okay got it. thanks