1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +02:00

default configuration to print in debug mode

This commit is contained in:
Andrew Gvozdev 2010-04-13 17:34:59 +00:00
parent f9a4febf5f
commit 4b9f93946c

View file

@ -204,10 +204,11 @@ public abstract class ACBuilder extends IncrementalProjectBuilder implements IMa
@SuppressWarnings("nls")
protected void printEvent(int kind, Map<String, String> args) {
if (DEBUG_EVENTS) {
String ids = args!=null ? args.get(CONTENTS_CONFIGURATION_IDS) : null;
System.out.println("t"+Thread.currentThread().getId()+": "
+ kindToString(kind)
+ ", " + getProject()
+ (args!=null ? "[" + cfgIdToNames(args.get(CONTENTS_CONFIGURATION_IDS)) +"]" : "")
+ "[" + cfgIdToNames(ids) +"]"
+ ", " + this.getClass().getSimpleName()
);
}