Description
LoggerConfig has a protected constructor that has an argument called includeLocation (boolean). When log4j2 calls this constructor they use the private static boolean includeLocation method to determine this argument. Since it's private, I cannot call it. I would like to suggest this to be changed to a protected method instead. That way, I don't have to duplicate the method in order to call this constructor, especially since it's specifically for the protected constructor.