Enable dd-trace logging in QA to try and figure out why user info isn't being added to traces.

This commit is contained in:
Sam Rose 2024-01-05 15:08:43 +00:00
parent 946a73f1b6
commit 261e60d3bc
No known key found for this signature in database
1 changed files with 5 additions and 1 deletions

View File

@ -3,5 +3,9 @@ import apm from "dd-trace"
// enable APM if configured
if (process.env.DD_APM_ENABLED) {
console.log("Starting dd-trace")
apm.init()
apm.init({
// @ts-ignore for some reason dd-trace types don't include this options,
// even though it's spoken about in the docs.
debug: process.env.DD_ENV === "qa",
})
}