Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batch/framework
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv27472/framework
Modified Files:
JobStatistics.java Main.java
Log Message:
no message
Index: Main.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batch/framework/Main.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Main.java 15 Sep 2006 20:05:44 -0000 1.1
--- Main.java 19 Sep 2006 00:05:52 -0000 1.2
***************
*** 127,131 ****
logger.debug("Registering the controller with the management agent");
jobManagementAgent.start(jobContext, jobController, frameworkCreator);
! logger.error("Kicking off the controller");
returnCode=jobController.process();
/**
--- 127,131 ----
logger.debug("Registering the controller with the management agent");
jobManagementAgent.start(jobContext, jobController, frameworkCreator);
! logger.error("Starting the controller");
returnCode=jobController.process();
/**
Index: JobStatistics.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batch/framework/JobStatistics.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** JobStatistics.java 15 Sep 2006 20:05:44 -0000 1.1
--- JobStatistics.java 19 Sep 2006 00:05:52 -0000 1.2
***************
*** 179,183 ****
stringValue.append("[maxMemoryUsage = " + this.maxMemoryUsage + "]");
stringValue.append("[recordsProcessed = " + this.recordsProcessed + "]");
! stringValue.append("[exitCode = " + this.exitCode.toString() + "]");
stringValue.append("}");
return stringValue.toString();
--- 179,183 ----
stringValue.append("[maxMemoryUsage = " + this.maxMemoryUsage + "]");
stringValue.append("[recordsProcessed = " + this.recordsProcessed + "]");
! stringValue.append("[exitCode = " + ((this.exitCode!=null)?this.exitCode.toString():"") + "]");
stringValue.append("}");
return stringValue.toString();
|