private static boolean isDcmAgentSuppressExceptionStack()

in library/src/main/java/com/alibaba/dcm/agent/DcmAgent.java [168:176]


    private static boolean isDcmAgentSuppressExceptionStack() {
        String suppressException = getConfig(DCM_AGENT_SUPPRESS_EXCEPTION_STACK);
        if (suppressException == null) return false;

        suppressException = suppressException.trim();
        if (suppressException.isEmpty()) return false;

        return "true".equalsIgnoreCase(suppressException);
    }