chore(cli): replace snaps-utils logError with logger #818
+35
−17
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.
Replace the
logErrorimport from@metamask/snaps-utilswith the standard internal logger, removing an unnecessary dependency on the snaps-utils package. This simplifies the error handling inapp.tsandserve.tsby using the same logging infrastructure as the rest of the CLI.Note
Low Risk
Small refactor limited to CLI logging and dev server error reporting, with no changes to core functionality or security-sensitive logic.
Overview
Standardizes CLI logging by switching
app.tsto a configured@metamask/loggerinstance with a custom console transport (no tag output) and by passing that logger through to theserve/startcommands.Updates
getServerincommands/serve.tsto accept an optionalLoggerand use it for request-handler error reporting, replacing@metamask/snaps-utils’slogError; the@metamask/snaps-utilsdependency is removed frompackage.json/yarn.lock.Written by Cursor Bugbot for commit 88f0f43. This will update automatically on new commits. Configure here.