adeg
Explore posts from serversCDCloudflare Developers
•Created by adeg on 9/26/2024 in #workers-help
Source map in worker does’t work
also made a post here https://community.cloudflare.com/t/source-map-in-worker-doest-work/717053
5 replies
CDCloudflare Developers
•Created by adeg on 9/26/2024 in #workers-help
Source map in worker does’t work
{
"message": [
"{"time":"2024-09-26T10:36:41.684Z","level":"ERROR","type":"Error","msg":"TEST ERROR","stack":"Error: test error\n at getUsers2 (index.js:39683:19)\n at async dispatch (index.js:11165:17)\n at async cors2 (index.js:12082:5)\n at async dispatch (index.js:11165:17)\n at async index.js:10475:5\n at async dispatch (index.js:11165:17)\n at async dispatch (index.js:11165:17)\n at async index.js:11389:25"}"
],
"level": "log",
"timestamp": 1727347001684
}
This is the log message worker emitted.
but expected to see something like
which is what I got locally with
wrangler dev
run npx wrangler deploy --dry-run --outdir dist
I can get the index.js and index.js.map file.5 replies
how to export all the logs showing on the dashboard?
users are transferring their assets, we lost our db due to some unknown reason.
we trying to recover the data. log records the the transfer activities. In the log, I print the assets and id of the transfer, but assets string could be very long like over 100,000, I print the id at the last of the line... so I won't be able to see it
I'm trying to get the id of the transfer that is saved in the logs
34 replies