Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void execute() throws MojoExecutionException {
try {
generator = new MavenMessageCodeGenerator();
if (getLog().isInfoEnabled()) {
getLog().info("Successfully created an instance of the QuickFIX source generator");
getLog().info("Successfully created an instance of the QuickFIX/J source generator");
}
generator.setLog(getLog());

Expand Down Expand Up @@ -146,7 +146,7 @@ public void execute() throws MojoExecutionException {
task.setDecimalGenerated(decimal);
generator.generate(task);
} catch (Throwable t) {
throw new MojoExecutionException("QuickFIX code generator execution failed", t);
throw new MojoExecutionException("QuickFIX/J code generator execution failed", t);
}

if (project != null) {
Expand Down
Loading