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:
parent
f9a4febf5f
commit
4b9f93946c
1 changed files with 2 additions and 1 deletions
|
@ -204,10 +204,11 @@ public abstract class ACBuilder extends IncrementalProjectBuilder implements IMa
|
||||||
@SuppressWarnings("nls")
|
@SuppressWarnings("nls")
|
||||||
protected void printEvent(int kind, Map<String, String> args) {
|
protected void printEvent(int kind, Map<String, String> args) {
|
||||||
if (DEBUG_EVENTS) {
|
if (DEBUG_EVENTS) {
|
||||||
|
String ids = args!=null ? args.get(CONTENTS_CONFIGURATION_IDS) : null;
|
||||||
System.out.println("t"+Thread.currentThread().getId()+": "
|
System.out.println("t"+Thread.currentThread().getId()+": "
|
||||||
+ kindToString(kind)
|
+ kindToString(kind)
|
||||||
+ ", " + getProject()
|
+ ", " + getProject()
|
||||||
+ (args!=null ? "[" + cfgIdToNames(args.get(CONTENTS_CONFIGURATION_IDS)) +"]" : "")
|
+ "[" + cfgIdToNames(ids) +"]"
|
||||||
+ ", " + this.getClass().getSimpleName()
|
+ ", " + this.getClass().getSimpleName()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue