Package org.eclipse.cdt.core.parser
Class AbstractParserLogService
- java.lang.Object
-
- org.eclipse.cdt.core.parser.AbstractParserLogService
-
- All Implemented Interfaces:
IParserLogService
- Direct Known Subclasses:
DefaultLogService
,NullLogService
public abstract class AbstractParserLogService extends Object implements IParserLogService
-
-
Constructor Summary
Constructors Constructor Description AbstractParserLogService()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AbstractParserLogService
convert(IParserLogService log)
void
errorLog(String message)
boolean
isTracing()
boolean
isTracing(String traceOption)
boolean
isTracingExceptions()
void
traceException(Throwable th)
void
traceLog(String message)
void
traceLog(String traceOption, String message)
-
-
-
Method Detail
-
convert
public static AbstractParserLogService convert(IParserLogService log)
- Since:
- 5.4
-
traceLog
public void traceLog(String message)
- Specified by:
traceLog
in interfaceIParserLogService
-
isTracing
public boolean isTracing(String traceOption)
- Parameters:
traceOption
- an option as defined in the .options file.- Since:
- 5.4
-
traceLog
public void traceLog(String traceOption, String message)
- Parameters:
traceOption
- an option as defined in the .options file.- Since:
- 5.4
-
errorLog
public void errorLog(String message)
-
isTracing
public boolean isTracing()
- Specified by:
isTracing
in interfaceIParserLogService
-
isTracingExceptions
public boolean isTracingExceptions()
-
traceException
public void traceException(Throwable th)
-
-