Skip to content

Commit

Permalink
Update SoftwareUpdateHandler.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ase-101 authored Apr 22, 2022
1 parent 7514756 commit 4763a68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ private void checkJars(String version, Collection<String> checkableJars)
if (!jarInFolder.exists()) {

LOGGER.info(LoggerConstants.LOG_REG_UPDATE, APPLICATION_NAME, APPLICATION_ID,
"Downloading jar : " + jarFile + " started, copy to : " + jarInFolder.toPath());
"Downloading jar : " + jarFile + " started, copyto : " + jarInFolder.toPath());
// Download Jar
Files.copy(getInputStreamOfJar(version, jarFile), jarInFolder.toPath());

Expand All @@ -372,7 +372,7 @@ private void checkJars(String version, Collection<String> checkableJars)
FileUtils.forceDelete(jarInFolder);

LOGGER.info(LoggerConstants.LOG_REG_UPDATE, APPLICATION_NAME, APPLICATION_ID,
"Downloading jar : " + jarFile + " started, copy to : " + jarInFolder.toPath());
"Downloading jar : " + jarFile + " started, copyto : " + jarInFolder.toPath());

// Download Jar
Files.copy(getInputStreamOfJar(version, jarFile), jarInFolder.toPath());
Expand Down

0 comments on commit 4763a68

Please sign in to comment.