-
-
Notifications
You must be signed in to change notification settings - Fork 435
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
Don't override sdk version with timber #2450
Merged
Merged
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
romtsn
requested review from
adinauer,
stefanosiano and
markushi
as code owners
January 3, 2023 15:22
Performance metrics 🚀
|
Revision | Plain | With Sentry | Diff |
---|---|---|---|
4a9c176 | 319.77 ms | 363.20 ms | 43.43 ms |
f1150bc | 352.62 ms | 453.27 ms | 100.65 ms |
f809aac | 301.51 ms | 346.60 ms | 45.09 ms |
4a9c176 | 336.33 ms | 384.73 ms | 48.41 ms |
5fd37fa | 334.02 ms | 401.10 ms | 67.08 ms |
703d523 | 358.00 ms | 369.94 ms | 11.94 ms |
81a1a6c | 328.73 ms | 421.28 ms | 92.55 ms |
a04f788 | 321.78 ms | 354.12 ms | 32.35 ms |
95647bd | 349.76 ms | 397.92 ms | 48.16 ms |
ecf9680 | 303.12 ms | 346.35 ms | 43.23 ms |
App size
Revision | Plain | With Sentry | Diff |
---|---|---|---|
4a9c176 | 1.73 MiB | 2.33 MiB | 612.69 KiB |
f1150bc | 1.73 MiB | 2.33 MiB | 615.66 KiB |
f809aac | 1.73 MiB | 2.32 MiB | 608.63 KiB |
4a9c176 | 1.73 MiB | 2.33 MiB | 612.69 KiB |
5fd37fa | 1.73 MiB | 2.33 MiB | 616.48 KiB |
703d523 | 1.73 MiB | 2.33 MiB | 613.23 KiB |
81a1a6c | 1.73 MiB | 2.32 MiB | 612.47 KiB |
a04f788 | 1.73 MiB | 2.32 MiB | 609.88 KiB |
95647bd | 1.73 MiB | 2.33 MiB | 616.54 KiB |
ecf9680 | 1.73 MiB | 2.32 MiB | 612.39 KiB |
markushi
approved these changes
Jan 3, 2023
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.
Neat! Less code, less bugs 😄
Instructions and example for changelogPlease add an entry to Example: ## Unreleased
- Don't override sdk version with timber ([#2450](https://github.com/getsentry/sentry-java/pull/2450)) If none of the above apply, you can opt out of this check by adding |
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
We should not override the sdk version/name, because Timber is just an integration as opposed to other "sdk-like" things, like spring-boot or log4j. We can still query the
packages
and see who's using timber (and soon,integrations
).This way we avoid the weird
sentry.java.android.timber
name in the SDK description (should besentry.java.android
)💡 Motivation and Context
Closes #1893
📝 Checklist