From 2dec032500ae3f52c7daa5a4ec3d4035dd6df37f Mon Sep 17 00:00:00 2001 From: tpylak <tpylak> Date: Fri, 1 Feb 2008 12:41:19 +0000 Subject: [PATCH] minor: correct log messages SVN: 3951 --- .../cisd/common/utilities/ProcessExecutionHelper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/source/java/ch/systemsx/cisd/common/utilities/ProcessExecutionHelper.java b/common/source/java/ch/systemsx/cisd/common/utilities/ProcessExecutionHelper.java index f184902ccbf..e5ca8fdfdb6 100644 --- a/common/source/java/ch/systemsx/cisd/common/utilities/ProcessExecutionHelper.java +++ b/common/source/java/ch/systemsx/cisd/common/utilities/ProcessExecutionHelper.java @@ -273,10 +273,10 @@ public class ProcessExecutionHelper { if (terminationStatus.isInterruptedAfterTimeout() == false) // have NOT been stopped by the watchDog { - machineLog.error(String.format("Execution of %s interupted", process), ex); + machineLog.error(String.format("Execution of %s interrupted", process), ex); } else { - operationLog.warn(String.format("Execution of %s interupted after timeout", process)); + operationLog.warn(String.format("Execution of %s interrupted after timeout", process)); } } @@ -307,7 +307,7 @@ public class ProcessExecutionHelper { exitStatus.setInterruptedAfterTimeout(); operationLog.info(String.format( - "Interupting waiting for the process %s by the watchDog", process)); + "Interrupting waiting for the process %s by the watchDog", process)); // stop waiting for the process. We need this, because sometimes the child process, // which is an external program, gets stuck and cannot be destroyed. We do not want the // whole system to hang because of that. -- GitLab