For logging exceptions we should follow the guidelines outlined at https://opentelemetry.io/docs/specs/semconv/exceptions/exceptions-logs/ In particular we're missing these fields: - `exception.message` -> `err.message` - `exception.type` -> `err.name` - `exception.stacktrace` -> `err.stack` ## Steps to reproduce 1. Run this script: ```ts Deno.serve(() => { throw new Error("FAIL") }); ``` Version: Deno 2.2.12
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by marvinhagemeister and has received 1 comments.