mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
9678044b11
commit
15a3ca473a
1 changed files with 42 additions and 44 deletions
|
@ -18,67 +18,65 @@ import org.eclipse.cdt.core.parser.IProblem;
|
|||
* @author ddaoust
|
||||
*/
|
||||
public class TraceUtil {
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem, String first, String second, String third ) {
|
||||
if( log.isTracing() ) {
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem,
|
||||
String first, String second, String third) {
|
||||
if (log.isTracing()) {
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
if( preface != null ) buffer.append( preface );
|
||||
if( problem != null ) buffer.append( problem.getMessageWithLocation());
|
||||
if( first != null ) buffer.append( first );
|
||||
if( second != null ) buffer.append( second );
|
||||
if( third != null ) buffer.append( third );
|
||||
log.traceLog( buffer.toString() );
|
||||
if (preface != null) buffer.append(preface);
|
||||
if (problem != null) buffer.append(problem.getMessageWithLocation());
|
||||
if (first != null) buffer.append(first);
|
||||
if (second != null) buffer.append(second);
|
||||
if (third != null) buffer.append(third);
|
||||
log.traceLog(buffer.toString());
|
||||
}
|
||||
}
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem ) {
|
||||
if( log.isTracing() ) {
|
||||
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem) {
|
||||
if (log.isTracing()) {
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
if( preface != null ) buffer.append( preface );
|
||||
if( problem != null ) buffer.append( problem.getMessageWithLocation());
|
||||
log.traceLog( buffer.toString() );
|
||||
if (preface != null) buffer.append(preface);
|
||||
if (problem != null) buffer.append(problem.getMessageWithLocation());
|
||||
log.traceLog(buffer.toString());
|
||||
}
|
||||
}
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem, char[] first, String second, String third ) {
|
||||
if( log.isTracing() ) {
|
||||
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem,
|
||||
char[] first, String second, String third) {
|
||||
if (log.isTracing()) {
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
if( preface != null ) buffer.append( preface );
|
||||
if( problem != null ) buffer.append( problem.getMessageWithLocation());
|
||||
if( first != null ) buffer.append( first );
|
||||
if( second != null ) buffer.append( second );
|
||||
if( third != null ) buffer.append( third );
|
||||
log.traceLog( buffer.toString() );
|
||||
if (preface != null) buffer.append(preface);
|
||||
if (problem != null) buffer.append(problem.getMessageWithLocation());
|
||||
if (first != null) buffer.append(first);
|
||||
if (second != null) buffer.append(second);
|
||||
if (third != null) buffer.append(third);
|
||||
log.traceLog(buffer.toString());
|
||||
}
|
||||
}
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem, int first, String second, int third ) {
|
||||
if( log.isTracing() ) {
|
||||
outputTrace(
|
||||
log,
|
||||
preface,
|
||||
problem,
|
||||
Integer.toString( first ),
|
||||
second,
|
||||
Integer.toString( third ) );
|
||||
|
||||
public static void outputTrace(IParserLogService log, String preface, IProblem problem,
|
||||
int first, String second, int third) {
|
||||
if (log.isTracing()) {
|
||||
outputTrace(log, preface, problem, Integer.toString(first), second, Integer.toString(third));
|
||||
}
|
||||
}
|
||||
public static void outputTrace(IParserLogService log, String preface, String first, String second, String third ) {
|
||||
outputTrace(log, preface, null, first, second, third);
|
||||
|
||||
public static void outputTrace(IParserLogService log, String preface, String first,
|
||||
String second, String third) {
|
||||
outputTrace(log, preface, null, first, second, third);
|
||||
}
|
||||
|
||||
public static void outputTrace(IParserLogService log, String preface) {
|
||||
if( log.isTracing() ){
|
||||
if ( preface != null )
|
||||
log.traceLog( preface );
|
||||
if (log.isTracing() && preface != null) {
|
||||
log.traceLog(preface);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @param logService
|
||||
* @param preface
|
||||
* @param data
|
||||
*/
|
||||
|
||||
public static void outputTrace(IParserLogService logService, String preface, String data) {
|
||||
if( logService.isTracing() ) {
|
||||
if (logService.isTracing()) {
|
||||
StringBuffer buffer = new StringBuffer();
|
||||
if( preface != null ) buffer.append( preface );
|
||||
if( data != null ) buffer.append( data );
|
||||
logService.traceLog( buffer.toString() );
|
||||
if (preface != null) buffer.append(preface);
|
||||
if (data != null) buffer.append(data);
|
||||
logService.traceLog(buffer.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue