8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4594e72 commit 21dbd19Copy full SHA for 21dbd19
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