Package org.tmatesoft.svn.util
Class SVNDebugLogAdapter
- java.lang.Object
-
- org.tmatesoft.svn.util.SVNDebugLogAdapter
-
- All Implemented Interfaces:
ISVNDebugLog
- Direct Known Subclasses:
DefaultSVNDebugLogger
,JavaHLCompositeLog
,JavaHLDebugLog
,JavaHLProgressLog
,JavaHLProgressLog
public abstract class SVNDebugLogAdapter extends java.lang.Object implements ISVNDebugLog
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Constructor Summary
Constructors Constructor Description SVNDebugLogAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.OutputStream
createInputLogStream()
java.io.InputStream
createLogStream(SVNLogType logType, java.io.InputStream is)
java.io.OutputStream
createLogStream(SVNLogType logType, java.io.OutputStream os)
java.io.OutputStream
createOutputLogStream()
void
flushStream(java.lang.Object stream)
void
logError(SVNLogType logType, java.lang.String message)
void
logError(SVNLogType logType, java.lang.Throwable th)
void
logFine(SVNLogType logType, java.lang.String message)
void
logFine(SVNLogType logType, java.lang.Throwable th)
void
logFiner(SVNLogType logType, java.lang.String message)
void
logFiner(SVNLogType logType, java.lang.Throwable th)
void
logFinest(SVNLogType logType, java.lang.String message)
void
logFinest(SVNLogType logType, java.lang.Throwable th)
void
logSevere(SVNLogType logType, java.lang.String message)
void
logSevere(SVNLogType logType, java.lang.Throwable th)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.tmatesoft.svn.util.ISVNDebugLog
log, log, log
-
-
-
-
Method Detail
-
logError
public void logError(SVNLogType logType, java.lang.String message)
- Specified by:
logError
in interfaceISVNDebugLog
-
logError
public void logError(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logError
in interfaceISVNDebugLog
-
logSevere
public void logSevere(SVNLogType logType, java.lang.String message)
- Specified by:
logSevere
in interfaceISVNDebugLog
-
logSevere
public void logSevere(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logSevere
in interfaceISVNDebugLog
-
logFine
public void logFine(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFine
in interfaceISVNDebugLog
-
logFine
public void logFine(SVNLogType logType, java.lang.String message)
- Specified by:
logFine
in interfaceISVNDebugLog
-
logFiner
public void logFiner(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFiner
in interfaceISVNDebugLog
-
logFiner
public void logFiner(SVNLogType logType, java.lang.String message)
- Specified by:
logFiner
in interfaceISVNDebugLog
-
logFinest
public void logFinest(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFinest
in interfaceISVNDebugLog
-
logFinest
public void logFinest(SVNLogType logType, java.lang.String message)
- Specified by:
logFinest
in interfaceISVNDebugLog
-
flushStream
public void flushStream(java.lang.Object stream)
- Specified by:
flushStream
in interfaceISVNDebugLog
-
createLogStream
public java.io.InputStream createLogStream(SVNLogType logType, java.io.InputStream is)
- Specified by:
createLogStream
in interfaceISVNDebugLog
-
createLogStream
public java.io.OutputStream createLogStream(SVNLogType logType, java.io.OutputStream os)
- Specified by:
createLogStream
in interfaceISVNDebugLog
-
createInputLogStream
public java.io.OutputStream createInputLogStream()
- Specified by:
createInputLogStream
in interfaceISVNDebugLog
-
createOutputLogStream
public java.io.OutputStream createOutputLogStream()
- Specified by:
createOutputLogStream
in interfaceISVNDebugLog
-
-