Javadoc
This commit is contained in:
@@ -731,7 +731,7 @@ public abstract class LogFactory {
|
||||
* <li>The {@code org.apache.commons.logging.LogFactory} system property.</li>
|
||||
* <li>The JDK 1.3 Service Discovery mechanism</li>
|
||||
* <li>Use the properties file {@code commons-logging.properties} file, if found in the class path of this class. The configuration file is in standard
|
||||
* {@code java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined
|
||||
* {@link java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined
|
||||
* above.</li>
|
||||
* <li>Fall back to a default implementation class ({@code org.apache.commons.logging.impl.LogFactoryImpl}).</li>
|
||||
* </ul>
|
||||
|
||||
@@ -82,7 +82,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINE}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#debug(Object)
|
||||
@@ -93,7 +93,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINE}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -105,7 +105,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#error(Object)
|
||||
@@ -116,7 +116,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -128,7 +128,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#fatal(Object)
|
||||
@@ -139,7 +139,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -196,7 +196,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.INFO}.
|
||||
* Logs a message with {@link java.util.logging.Level#INFO}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#info(Object)
|
||||
@@ -207,7 +207,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.INFO}.
|
||||
* Logs a message with {@link java.util.logging.Level#INFO}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -282,7 +282,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINEST}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINEST}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#trace(Object)
|
||||
@@ -293,7 +293,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINEST}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINEST}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -305,7 +305,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.WARNING}.
|
||||
* Logs a message with {@link java.util.logging.Level#WARNING}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#warn(Object)
|
||||
@@ -316,7 +316,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.WARNING}.
|
||||
* Logs a message with {@link java.util.logging.Level#WARNING}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
|
||||
@@ -62,7 +62,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINE}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#debug(Object)
|
||||
@@ -73,7 +73,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINE}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -85,7 +85,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#error(Object)
|
||||
@@ -96,7 +96,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -108,7 +108,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#fatal(Object)
|
||||
@@ -119,7 +119,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.SEVERE}.
|
||||
* Logs a message with {@link java.util.logging.Level#SEVERE}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -143,7 +143,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.INFO}.
|
||||
* Logs a message with {@link java.util.logging.Level#INFO}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#info(Object)
|
||||
@@ -154,7 +154,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.INFO}.
|
||||
* Logs a message with {@link java.util.logging.Level#INFO}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -242,7 +242,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINEST}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINEST}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#trace(Object)
|
||||
@@ -253,7 +253,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.FINEST}.
|
||||
* Logs a message with {@link java.util.logging.Level#FINEST}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
@@ -265,7 +265,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.WARNING}.
|
||||
* Logs a message with {@link java.util.logging.Level#WARNING}.
|
||||
*
|
||||
* @param message to log
|
||||
* @see org.apache.commons.logging.Log#warn(Object)
|
||||
@@ -276,7 +276,7 @@ public class Jdk14Logger implements Log, Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message with {@code java.util.logging.Level.WARNING}.
|
||||
* Logs a message with {@link java.util.logging.Level#WARNING}.
|
||||
*
|
||||
* @param message to log
|
||||
* @param exception log this cause
|
||||
|
||||
@@ -57,7 +57,7 @@ import org.apache.commons.logging.LogConfigurationException;
|
||||
* <li>{@code org.apache.commons.logging.simplelog.dateTimeFormat} -
|
||||
* The date and time format to be used in the output messages.
|
||||
* The pattern describing the date and time format is the same that is
|
||||
* used in {@code java.text.SimpleDateFormat}. If the format is not
|
||||
* used in {@link java.text.SimpleDateFormat}. If the format is not
|
||||
* specified or is invalid, the default format is used.
|
||||
* The default format is {@code yyyy/MM/dd HH:mm:ss:SSS zzz}.</li>
|
||||
* </ul>
|
||||
|
||||
@@ -57,7 +57,7 @@ import java.util.Set;
|
||||
* Having this class used instead of {@code Hashtable} solves
|
||||
* certain issues related to dynamic reloading of applications in J2EE-style
|
||||
* environments. However this class requires Java 1.3 or later (due to its use
|
||||
* of {@code java.lang.ref.WeakReference} and associates).
|
||||
* of {@link java.lang.ref.WeakReference} and associates).
|
||||
* And by the way, this extends {@code Hashtable} rather than {@code HashMap}
|
||||
* for backwards compatibility reasons. See the documentation
|
||||
* for method {@code LogFactory.createFactoryStore} for more details.
|
||||
|
||||
Reference in New Issue
Block a user