Skip to content
Snippets Groups Projects
Commit 84c31b66 authored by gmantele's avatar gmantele
Browse files

UWS: Remove debugging message (displayed as an exception) at each job start.

parent 5ba927a5
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,8 @@ package uws.job; ...@@ -16,7 +16,8 @@ package uws.job;
* You should have received a copy of the GNU Lesser General Public License * You should have received a copy of the GNU Lesser General Public License
* along with UWSLibrary. If not, see <http://www.gnu.org/licenses/>. * along with UWSLibrary. If not, see <http://www.gnu.org/licenses/>.
* *
* Copyright 2012 - UDS/Centre de Données astronomiques de Strasbourg (CDS) * Copyright 2012-2014 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
* Astronomisches Rechen Institute (ARI)
*/ */
import java.io.IOException; import java.io.IOException;
...@@ -118,8 +119,8 @@ import uws.service.log.UWSLog; ...@@ -118,8 +119,8 @@ import uws.service.log.UWSLog;
* </li> * </li>
* </ul> * </ul>
* *
* @author Gr&eacute;gory Mantelet (CDS) * @author Gr&eacute;gory Mantelet (CDS;ARI)
* @version 06/2012 * @version 4.1 (04/2014)
*/ */
public class UWSJob extends SerializableUWSObject { public class UWSJob extends SerializableUWSObject {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -1323,9 +1324,6 @@ public class UWSJob extends SerializableUWSObject { ...@@ -1323,9 +1324,6 @@ public class UWSJob extends SerializableUWSObject {
}// Otherwise start directly the execution: }// Otherwise start directly the execution:
else{ else{
System.out.println("Starting "+jobId+"...");
(new Exception("Starting "+jobId)).printStackTrace();
// Try to change the phase: // Try to change the phase:
setPhase(ExecutionPhase.EXECUTING); setPhase(ExecutionPhase.EXECUTING);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment