We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 587d4b8 commit cf301ceCopy full SHA for cf301ce
dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/Agent.java
@@ -818,8 +818,12 @@ private static StatsDClientManager statsDClientManager() throws Exception {
818
819
private static void maybeStartAppSec(Class<?> scoClass, Object o) {
820
821
- // event tracking SDK must be available for customers even if AppSec is fully disabled
822
- AppSecEventTracker.install();
+ try {
+ // event tracking SDK must be available for customers even if AppSec is fully disabled
823
+ AppSecEventTracker.install();
824
+ } catch (final Exception e) {
825
+ log.debug("Error starting AppSec Event Tracker", e);
826
+ }
827
828
if (!(appSecEnabled || (remoteConfigEnabled && !appSecFullyDisabled))) {
829
return;
0 commit comments