Skip to content
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

Remove Extra Space Before "stackTrace" in Error Payload JSON #198

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

math-hiyoko
Copy link

Summery

This PR addresses the issue reported in #197 regarding the unnecessary space found before the "stackTrace" key in the generated JSON error payload. The presence of this space affects the consistency of the JSON formatting without impacting the functionality or parseability of the output. This minor change aims to enhance the readability and the overall quality of the code by maintaining a consistent JSON format.

Changes

The extra space before the "stackTrace" key in the JSON string construction has been removed.

Before

R"(", "stackTrace":[]})";

After

R"(","stackTrace":[]})";

@math-hiyoko math-hiyoko marked this pull request as draft May 14, 2024 16:06
@math-hiyoko math-hiyoko marked this pull request as ready for review May 14, 2024 16:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant