Skip to content

Commit

Permalink
wrapper logging text
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Nov 16, 2023
1 parent d16a1e2 commit baf243d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/org/myrobotlab/framework/repo/IvyWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ synchronized public void install(String location, String[] serviceTypes) throws

File file = ar.getLocalFile();
String filename = file.getAbsoluteFile().getAbsolutePath();
log.info("{}", filename);
log.info("{}", filename);

if ("zip".equalsIgnoreCase(artifact.getExt())) {
info("unzipping %s", filename);
Expand All @@ -534,6 +534,8 @@ synchronized public void install(String location, String[] serviceTypes) throws
throw new IOException(String.format("unable to unzip file %s", filename));
}
}

publishStatus(Status.newInstance(Repo.class.getSimpleName(), StatusLevel.INFO, Repo.INSTALL_FINISHED, String.format("finished install of artifacts for %s", (Object[]) serviceTypes)));
}

publishStatus(Status.newInstance(Repo.class.getSimpleName(), StatusLevel.INFO, Repo.INSTALL_FINISHED, String.format("finished install of %s", (Object[]) serviceTypes)));
Expand Down

0 comments on commit baf243d

Please sign in to comment.