We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0cc8ea commit 5d3128fCopy full SHA for 5d3128f
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceJob.java
@@ -161,10 +161,9 @@ protected void addCustomParams(JSONObject params)
161
params.put("labkeyFolderPath", getContainer().isWorkbook() ? getContainer().getParent().getPath() : getContainer().getPath());
162
}
163
164
- private Path _getLogFile()
+ private FileLike _getLogFile()
165
{
166
- var file = FileUtil.findUniqueFileName((FileUtil.makeLegalName(_jobName) + ".log"), getDataDirectoryFileObject());
167
- return file.toNioPathForWrite();
+ return FileUtil.findUniqueFileName((FileUtil.makeLegalName(_jobName) + ".log"), getDataDirectoryFileObject());
168
169
170
@Override
0 commit comments