Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix merge conflict
  • Loading branch information
Manoel Aranda Neto committed Oct 25, 2019
commit 51959650f8a3c00d739c173a99bfccf12beb060f
9 changes: 9 additions & 0 deletions sentry-core/src/main/java/io/sentry/core/SentryOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class SentryOptions {
private String cacheDirPath;
private String release;
private String environment;
private Proxy proxy;

public void addEventProcessor(EventProcessor eventProcessor) {
eventProcessors.add(eventProcessor);
Expand Down Expand Up @@ -148,6 +149,14 @@ public void setEnvironment(String environment) {
this.environment = environment;
}

public Proxy getProxy() {
return proxy;
}

public void setProxy(Proxy proxy) {
this.proxy = proxy;
}

public interface BeforeSendCallback {
SentryEvent execute(SentryEvent event);
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.