Skip to content

Commit 0495b50

Browse files
committed
Additional logging
1 parent 89e3a11 commit 0495b50

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

SequenceAnalysis/api-src/org/labkey/api/sequenceanalysis/run/AbstractCommandWrapper.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@ public ProcessBuilder getProcessBuilder(List<String> params)
110110

111111
if (!_environment.isEmpty())
112112
{
113+
for (String var : _environment.keySet())
114+
{
115+
getLogger().debug("adding to env: " + var + " = " + _environment.get(var));
116+
}
117+
113118
pb.environment().putAll(_environment);
114119
}
115120

0 commit comments

Comments
 (0)