Changeset 1358


Ignore:
Timestamp:
02/07/14 18:08:26 (10 years ago)
Author:
pharms
Message:
  • improved logging
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeimpl/TaskInstance.java

    r1294 r1358  
    118118    public synchronized String toString() { 
    119119        StringBuffer result = new StringBuffer(); 
    120         result.append("task "); 
     120        result.append(task.getType()); 
     121        result.append(" #"); 
    121122        result.append(task.getId()); 
    122         result.append(" (#"); 
    123         result.append(id); 
    124123         
    125124        if (task.getDescription() != null) { 
    126             result.append(", "); 
     125            result.append(" ("); 
    127126            result.append(task.getDescription()); 
     127            result.append(')'); 
    128128        } 
    129129         
     
    134134        }*/ 
    135135         
    136         result.append(')'); 
    137136        return result.toString(); 
    138137    } 
Note: See TracChangeset for help on using the changeset viewer.