Skip to content

Commit

Permalink
Fix the printed message
Browse files Browse the repository at this point in the history
  • Loading branch information
rsvoboda committed Jun 13, 2022
1 parent dd1eb9d commit d51db86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void setStream(String stream) {
} catch (IllegalArgumentException iex) {
throw new CommandLine.ParameterException(spec.commandLine(),
String.format("Invalid value '%s' for option '--stream'. " +
"Value should be specified as 'platformKey:streamId'. %s", iex.getMessage()));
"Value should be specified as 'platformKey:streamId'. %s", stream, iex.getMessage()));
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public Integer call() throws Exception {
public String toString() {
return "BaseCreateCommand ["
+ "outputPath=" + outputPath
+ ", registryClient" + registryClient
+ ", registryClient=" + registryClient
+ ", projectDirName=" + projectDirName
+ ", projectRootPath=" + projectRootPath
+ ", targetDirectory=" + targetDirectory
Expand Down

0 comments on commit d51db86

Please sign in to comment.