forked from unshare/hybris-integration-intellij-idea-plugin
-
Notifications
You must be signed in to change notification settings - Fork 46
CCv2 | Unscramble Json Stacktrace #1567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mlytvyn
merged 4 commits into
epam:main
from
StefanKruk:feature/CCv2JsonStackTraceUnscrambler
Sep 17, 2025
Merged
CCv2 | Unscramble Json Stacktrace #1567
mlytvyn
merged 4 commits into
epam:main
from
StefanKruk:feature/CCv2JsonStackTraceUnscrambler
Sep 17, 2025
Conversation
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
mlytvyn
reviewed
Sep 16, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@StefanKruk , could you please add some screenshots and use case ? It would be easier to review the code, thank you!
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2JSONStackTraceUnscrambler.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2JSONStackTraceUnscrambler.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2JsonUnscrambleHelper.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2JsonUnscrambleHelper.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2UnscrambleListener.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2JSONStackTraceUnscrambler.kt
Outdated
Show resolved
Hide resolved
modules/ccv2/ui/src/sap/commerce/toolset/ccv2/unscramble/CCv2UnscrambleListener.kt
Show resolved
Hide resolved
mlytvyn
reviewed
Sep 16, 2025
modules/ccv2/core/src/sap/commerce/toolset/ccv2/unscramble/CCv2UnscrambleService.kt
Outdated
Show resolved
Hide resolved
mlytvyn
approved these changes
Sep 17, 2025
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.
Sometimes it is not possible to extract the Stacktrace directly in a form that IntelliJ is able to display. Instead SAP Cloud Logging provides it as JSON Statement:
If the JSON would be used directly in the "Analyze Stack trace" window:


it would be displayed as
with this Feature we make use of the Unscrable Feature of IntelliJ https://www.jetbrains.com/help/idea/analyzing-external-stacktraces.html
via "Analyze Stack trace" Windows in IntelliJ it is now possible to also properly unscramble it and display as proper Stacktrace.
Via Listener it is also possible to display the Stacktrace directly when the JSON was copied from the SAP Cloud Logging and the User goes into IntelliJ for displaying the JSON.
Also the Classes and Methods are directly clickable
Signed-off-by: Stefan Kruk [email protected]