Skip to content

Commit

Permalink
fixes logger output for model file
Browse files Browse the repository at this point in the history
  • Loading branch information
lacan committed Oct 20, 2021
1 parent 059f063 commit fd569d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private File moveAndReturnModelFile() throws IOException {
File[] all = cellPoseModelFolder.listFiles();
Optional<File> cellPoseModel = Arrays.stream(all).filter(f -> f.getName().contains("cellpose")).findFirst();
if(cellPoseModel.isPresent()) {
logger.info("Found model file at {} ");
logger.info("Found model file at {} ", cellPoseModel);
File model = cellPoseModel.get();
File newModel = new File(modelDirectory, model.getName());
FileUtils.copyFile(model, newModel);
Expand Down

0 comments on commit fd569d9

Please sign in to comment.