-
Notifications
You must be signed in to change notification settings - Fork 178
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
chore(errors): amend errors so user-input derived issues are info level logged, the error is logged in full, and other refactoring #2767
Draft
iainsproat
wants to merge
39
commits into
main
Choose a base branch
from
iain/graphql-error-levels
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+583
−228
Conversation
This file contains 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
iainsproat
changed the title
chore(graphql): amend errors so user-input derived issues are info level logged and 4XX status coded
chore(graphql): amend errors so user-input derived issues are info level logged
Aug 28, 2024
- a more appropriate error is used if possible - FIXME and other notes added - logging as info is determined on statusCode assigned to error - info object on Error constructor is used where possible
- S3 config should use envHelper
iainsproat
commented
Aug 29, 2024
packages/server/modules/serverinvites/services/coreEmailContents.ts
Outdated
Show resolved
Hide resolved
…ging metadata - this allows us to remove try/catch blocks around Express endpoints which were handling logging of errors
iainsproat
changed the title
chore(graphql): amend errors so user-input derived issues are info level logged
chore(errors): amend errors so user-input derived issues are info level logged, the error is logged in full, and other refactoring
Aug 29, 2024
- when the error messages are passed in to the logger, they are used as normal log message templates - when returned as error messages to the client, the templates are rendered
…ice account - the environment variables are shared between the two, so service accounts must match
iainsproat
commented
Sep 23, 2024
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.
Description & motivation
All errors classes extended from
BaseError
define an http status code. This is defined regardless of whether the error is used in handling an http request as it allows the correct log level to be selected.All generic
throw new Error
(in non-test, non-mock) is replaced with a more specific error class, extended fromBaseError
.The graphql error logger has been updated to use the statusCode to define which error level is used in logging.
Changes:
BaseError
.graphql_operation_value
was expected but was not a parameter available in the structured log. Replaces withgraphql_operation_name
.shouldLogAsInfoLevel
ObjectNotFoundError
. (TODO, complete this list)throw new Error
with a specific class.options.info
parameter when the error is constructed.To-do before merge:
Screenshots:
Requests now log the full error message, whether logging as info or error:
Validation of changes:
Checklist:
References