uima-ducc-common/src/main/java/org/apache/uima/ducc/common/utils/DuccLogger.java [391:403]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String format(DuccId duccId) {
    	String id;
        if ( duccId == null ) {
            id = defaultId;
        } else {
            id = duccId.toString();
            int increase = id.length() - defaultId.length();
            if (increase > 0) {
                defaultId += padding.substring(0, increase);
            }
        }
        return id;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uima-ducc-orchestrator/src/main/java/org/apache/uima/ducc/orchestrator/system/events/log/DuccLogger.java [372:384]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String format(DuccId duccId) {
    	String id;
        if ( duccId == null ) {
            id = defaultId;
        } else {
            id = duccId.toString();
            int increase = id.length() - defaultId.length();
            if (increase > 0) {
                defaultId += padding.substring(0, increase);
            }
        }
        return id;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



