Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import com.datadog.debugger.uploader.BatchUploader;
import com.datadog.debugger.util.ClassFileLines;
import com.datadog.debugger.util.DebuggerMetrics;
import com.datadog.debugger.util.ExceptionHelper;
import datadog.environment.SystemProperties;
import datadog.trace.agent.tooling.AgentStrategies;
import datadog.trace.api.Config;
Expand Down Expand Up @@ -1009,7 +1008,7 @@ protected String getCommonSuperClass(String type1, String type2) {
}
return common.getInternalName();
} catch (Exception ex) {
ExceptionHelper.logException(LOGGER, ex, "getCommonSuperClass failed: ");
LOGGER.debug("getCommonSuperClass failed: ", ex);
return tpDatadogClassLoader.describe("java.lang.Object").resolve().getInternalName();
}
}
Expand Down
Loading