You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The console.trace method is used by frameworks like HonoJS to provide extra information when capturing errors. This method is not present in the current SDK and is causing the framework to fail.
Reproduction steps
Clone the project and go to the examples/js-hono folder
Edit the src/index.js file and add a throw new Error("error!")` to any handler
Run the example and access to the handler
Expected behavior
Instead of a generic error by wws, Hono should manage it and provide the error. Currently, it's failing because it tries to call console.trace.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
The
console.trace
method is used by frameworks like HonoJS to provide extra information when capturing errors. This method is not present in the current SDK and is causing the framework to fail.Reproduction steps
examples/js-hono
foldersrc/index.js
file and add athrow new Error("error!"
)` to any handlerExpected behavior
Instead of a generic error by
wws
, Hono should manage it and provide the error. Currently, it's failing because it tries to callconsole.trace
.Additional context
No response
The text was updated successfully, but these errors were encountered: