Skip to content
Snippets Groups Projects
Commit 31ba7b0e authored by Robert Butora's avatar Robert Butora
Browse files

cutout: adds log msg to print ExecCmd

parent f67a5012
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,8 @@ class SodaImpl implements Soda ...@@ -85,6 +85,8 @@ class SodaImpl implements Soda
cmdBounds[2] = absPathname; cmdBounds[2] = absPathname;
cmdBounds[3] = coordString; cmdBounds[3] = coordString;
LOGGER.finest(String.join(" ", cmdBounds));
ExecCmd execBounds = new ExecCmd(); ExecCmd execBounds = new ExecCmd();
execBounds.doRun(bos, cmdBounds); execBounds.doRun(bos, cmdBounds);
LOGGER.finest("execBounds exitValue: " + execBounds.exitValue); LOGGER.finest("execBounds exitValue: " + execBounds.exitValue);
...@@ -127,6 +129,8 @@ class SodaImpl implements Soda ...@@ -127,6 +129,8 @@ class SodaImpl implements Soda
cmdCut[3] = String.valueOf(hdunum-1); cmdCut[3] = String.valueOf(hdunum-1);
cmdCut[4] = pixFilterString; cmdCut[4] = pixFilterString;
LOGGER.finest(String.join(" ", cmdCut));
if(outputStream == null) if(outputStream == null)
LOGGER.finest("supplied outputStream for cut-file is null"); LOGGER.finest("supplied outputStream for cut-file is null");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment