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
-
-
Constructor Summary
Constructors Constructor Description SVNDebugLogAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.OutputStreamcreateInputLogStream()java.io.InputStreamcreateLogStream(SVNLogType logType, java.io.InputStream is)java.io.OutputStreamcreateLogStream(SVNLogType logType, java.io.OutputStream os)java.io.OutputStreamcreateOutputLogStream()voidflushStream(java.lang.Object stream)voidlogError(SVNLogType logType, java.lang.String message)voidlogError(SVNLogType logType, java.lang.Throwable th)voidlogFine(SVNLogType logType, java.lang.String message)voidlogFine(SVNLogType logType, java.lang.Throwable th)voidlogFiner(SVNLogType logType, java.lang.String message)voidlogFiner(SVNLogType logType, java.lang.Throwable th)voidlogFinest(SVNLogType logType, java.lang.String message)voidlogFinest(SVNLogType logType, java.lang.Throwable th)voidlogSevere(SVNLogType logType, java.lang.String message)voidlogSevere(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:
logErrorin interfaceISVNDebugLog
-
logError
public void logError(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logErrorin interfaceISVNDebugLog
-
logSevere
public void logSevere(SVNLogType logType, java.lang.String message)
- Specified by:
logSeverein interfaceISVNDebugLog
-
logSevere
public void logSevere(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logSeverein interfaceISVNDebugLog
-
logFine
public void logFine(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFinein interfaceISVNDebugLog
-
logFine
public void logFine(SVNLogType logType, java.lang.String message)
- Specified by:
logFinein interfaceISVNDebugLog
-
logFiner
public void logFiner(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFinerin interfaceISVNDebugLog
-
logFiner
public void logFiner(SVNLogType logType, java.lang.String message)
- Specified by:
logFinerin interfaceISVNDebugLog
-
logFinest
public void logFinest(SVNLogType logType, java.lang.Throwable th)
- Specified by:
logFinestin interfaceISVNDebugLog
-
logFinest
public void logFinest(SVNLogType logType, java.lang.String message)
- Specified by:
logFinestin interfaceISVNDebugLog
-
flushStream
public void flushStream(java.lang.Object stream)
- Specified by:
flushStreamin interfaceISVNDebugLog
-
createLogStream
public java.io.InputStream createLogStream(SVNLogType logType, java.io.InputStream is)
- Specified by:
createLogStreamin interfaceISVNDebugLog
-
createLogStream
public java.io.OutputStream createLogStream(SVNLogType logType, java.io.OutputStream os)
- Specified by:
createLogStreamin interfaceISVNDebugLog
-
createInputLogStream
public java.io.OutputStream createInputLogStream()
- Specified by:
createInputLogStreamin interfaceISVNDebugLog
-
createOutputLogStream
public java.io.OutputStream createOutputLogStream()
- Specified by:
createOutputLogStreamin interfaceISVNDebugLog
-
-