1
0
This commit is contained in:
Gary Gregory
2023-11-20 19:22:47 -05:00
parent 6b11d8ab2e
commit e4d94ff51e
4 changed files with 6 additions and 6 deletions

View File

@@ -374,7 +374,7 @@ public abstract class LogFactory {
* At this point, either classLoader == null, OR classLoader was unable to load factoryClass.
*
* In either case, we call Class.forName, which is equivalent to LogFactory.class.getClassLoader().load(name), that is, we ignore the classloader
* parameter the caller passed, and fall back to trying the classloader associated with this class. See the javadoc for the newFactory method for
* parameter the caller passed, and fall back to trying the classloader associated with this class. See the Javadoc for the newFactory method for
* more info on the consequences of this.
*
* Notes: * LogFactory.class.getClassLoader() may return 'null' if LogFactory is loaded by the bootstrap classloader.

View File

@@ -493,7 +493,7 @@ public class LogFactoryImpl extends LogFactory {
/**
* Attempts to create a Log instance for the given category name.
* Follows the discovery process described in the class javadoc.
* Follows the discovery process described in the class Javadoc.
*
* @param logCategory the name of the log category
*