> On Dec 16, 2019, at 1:06 PM, Gary Gregory <[email protected]> wrote: > > And, so for 3.0: Move org.apache.logging.log4j.internal.DefaultLogBuilder > to org.apache.logging.log4j.spi since it is the only place seems to be used > from and make it package private unless I am misunderstanding the layout? >
Yes, it should not be overridden. Putting it in a package named internal gives an indication of that. Putting it in the spi package is not a good idea as that package will be exported in the module.info <http://module.info/>. Ralph
