fix: trace flag with coarser debug level is switched to use ReplayDebuggerLevels when ARD is run - W-22364952#7324
Draft
daphne-sfdc wants to merge 1 commit into
Draft
Conversation
…uggerLevels when ARD is run
peternhale
reviewed
May 18, 2026
| const userId = yield* traceFlagService.getUserId(); | ||
| yield* traceFlagService.ensureTraceFlag(userId); | ||
| const debugLevelId = yield* traceFlagService.getOrCreateDebugLevel(); | ||
| yield* traceFlagService.ensureTraceFlag(userId, undefined, undefined, debugLevelId); |
Contributor
There was a problem hiding this comment.
What is ensure not doing that requires get/create before calling. Seems like a bug in the ensure logic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Fixes a bug where the Apex Replay Debugger fails to run if the current trace flag is set to a level coarser than
ReplayDebuggerLevels. Now the trace flag switches its debug level from the coarser level toReplayDebuggerLevelsif the user runs Apex Replay Debugger.What issues does this PR fix or reference?
@W-22364952@
Functionality Before
Trace flag remains with the coarser debug level. User sees this error when running Apex Replay Debugger:

Functionality After
Trace flag is switched to debug level
ReplayDebuggerLevels, which is compatible with Apex Replay Debugger.Testing
Trace flag is currently set to a coarse debug level incompatible for Apex Replay Debugger.