1
0

Correct JavaDoc links (@see).

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@399221 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dennis Lundberg
2006-05-03 09:20:24 +00:00
parent 3b07a502f7
commit 5f4391761d
2 changed files with 2 additions and 2 deletions

View File

@@ -248,7 +248,7 @@ public class AvalonLogger implements Log {
* *
* @param message to log. * @param message to log.
* @param t log this cause. * @param t log this cause.
* @see org.apache.commons.logging.Log#debug(Object, Throwable) * @see org.apache.commons.logging.Log#trace(Object, Throwable)
*/ */
public void trace(Object message, Throwable t) { public void trace(Object message, Throwable t) {
if (getLogger().isDebugEnabled()) getLogger().debug(String.valueOf(message), t); if (getLogger().isDebugEnabled()) getLogger().debug(String.valueOf(message), t);

View File

@@ -395,7 +395,7 @@ public class SimpleLog implements Log, Serializable {
* <code>org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE</code>. * <code>org.apache.commons.logging.impl.SimpleLog.LOG_LEVEL_TRACE</code>.
* *
* @param message to log * @param message to log
* @see org.apache.commons.logging.Log#trace(Object, Throwable) * @see org.apache.commons.logging.Log#trace(Object)
*/ */
public final void trace(Object message) { public final void trace(Object message) {