private static String getPluginName()

in log4j-converter-config/src/main/java/org/apache/logging/converter/config/internal/v2/AbstractJacksonConfigurationMapper.java [104:108]


    private static String getPluginName(JsonNode jsonNode, String fieldName) {
        JsonNode typeNode = jsonNode.get(TYPE_ATTRIBUTE);
        String typeAttribute = typeNode != null ? typeNode.textValue() : null;
        return typeAttribute != null ? typeAttribute : fieldName;
    }