Skip to content

Commit

Permalink
[JENKINS-50598] - Adjust the error message text as suggested by @jglick
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Apr 9, 2018
1 parent 282dbfe commit 113e399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jvnet/hudson/test/WarExploder.java
Expand Up @@ -93,7 +93,7 @@ private static File explode() throws Exception {
final File war;
if (JENKINS_WAR_PATH != null) {
war = new File(JENKINS_WAR_PATH).getAbsoluteFile();
LOGGER.log(Level.INFO, "Using a predefined WAR file {0} define by the -{1} system property",
LOGGER.log(Level.INFO, "Using a predefined WAR file {0} define by the {1} system property",
new Object[] {war, JENKINS_WAR_PATH_PROPERTY_NAME});
if (!war.exists()) {
throw new IOException("A Predefined WAR file path does not exist: " + war);
Expand Down

0 comments on commit 113e399

Please sign in to comment.