This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
feat stacktraces and exceptions #61
Merged
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
ccb80f6
created MainEventProcessor
a98da12
WIP
ee4f571
WIP
7733648
fix merge conflict
199de95
fixing protocol names
affa3cb
parsing stacktraces
13d48b7
WIP
9f09714
removed frame cache
ea0cebe
cleaning up
9a62459
fix merge conflict
69aea15
ref stacktraces and exceptions
b0ef08a
code review
marandaneto 224a099
Merge branch 'master' into feat/stacktraces
marandaneto a7ff3aa
fix assert
marandaneto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
created MainEventProcessor
- Loading branch information
There are no files selected for viewing
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
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
17 changes: 17 additions & 0 deletions
17
sentry-core/src/main/java/io/sentry/core/MainEventProcessor.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| package io.sentry.core; | ||
|
|
||
| import io.sentry.core.util.Objects; | ||
|
|
||
| public class MainEventProcessor implements EventProcessor { | ||
|
|
||
| private final SentryOptions options; | ||
|
|
||
| public MainEventProcessor(SentryOptions options) { | ||
| this.options = Objects.requireNonNull(options, "The SentryOptions is required."); | ||
| } | ||
|
|
||
| @Override | ||
| public SentryEvent process(SentryEvent event) { | ||
| return event; | ||
| } | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.