Skip to content
Snippets Groups Projects
Commit f8f34405 authored by BIGARET Sebastien's avatar BIGARET Sebastien
Browse files

log msg added when IOExc happens on execute()

parent 0119b919
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ import java.io.Writer;
import java.util.HashMap;
import java.util.Map;
import java.util.StringTokenizer;
import java.util.logging.Level;
/**
* Allows the execution of an external process, the specification of its standard input and the retrieval of the
......@@ -293,7 +294,7 @@ public class SystemExecution
}
catch (IOException e)
{
// TODO fill in err. status
Log.log.log(Level.WARNING, "exec() throw IOException", e);
return -1;
}
Log.log.finest("Process started, now process.waitFor()");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment