From 84c31b660c5185c34882c4827c2702b9d4edbf0b Mon Sep 17 00:00:00 2001 From: gmantele <gmantele@ari.uni-heidelberg.de> Date: Thu, 3 Apr 2014 20:36:51 +0200 Subject: [PATCH] UWS: Remove debugging message (displayed as an exception) at each job start. --- src/uws/job/UWSJob.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/uws/job/UWSJob.java b/src/uws/job/UWSJob.java index 0102c15..cf2a4b2 100644 --- a/src/uws/job/UWSJob.java +++ b/src/uws/job/UWSJob.java @@ -16,7 +16,8 @@ package uws.job; * You should have received a copy of the GNU Lesser General Public License * 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; @@ -118,8 +119,8 @@ import uws.service.log.UWSLog; * </li> * </ul> * - * @author Grégory Mantelet (CDS) - * @version 06/2012 + * @author Grégory Mantelet (CDS;ARI) + * @version 4.1 (04/2014) */ public class UWSJob extends SerializableUWSObject { private static final long serialVersionUID = 1L; @@ -1323,9 +1324,6 @@ public class UWSJob extends SerializableUWSObject { }// Otherwise start directly the execution: else{ - System.out.println("Starting "+jobId+"..."); - (new Exception("Starting "+jobId)).printStackTrace(); - // Try to change the phase: setPhase(ExecutionPhase.EXECUTING); -- GitLab