-
Notifications
You must be signed in to change notification settings - Fork 30
chore: exception autocapture #305
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
base: main
Are you sure you want to change the base?
Conversation
@ioannisj early feedback is welcomed here, the feat works already |
// value is required, using an empty placeholder | ||
exception["value"] = theThrowable.message ?: "" |
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.
will undo once PostHog/posthog#39571 lands
if (event.isFatalExceptionEvent()) { | ||
executor.submitSyncSafely { | ||
flushEventSync(event, true) | ||
} | ||
} else { | ||
executor.executeSafely { | ||
flushEventSync(event) |
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.
if its fatal, flush it sync otherwise async
internal constructor(config: PostHogConfig, adapterExceptionHandler: UncaughtExceptionHandlerAdapter) { | ||
this.config = config | ||
this.adapterExceptionHandler = adapterExceptionHandler | ||
} |
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.
2nd ctor to make it testable, tests WIP
Sure. Will do as soon as I'm back |
💡 Motivation and Context
part of PostHog/posthog#38845
💚 How did you test it?
📝 Checklist