Skip to content

Commit

Permalink
#518 cleaned up log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkMahler committed Aug 1, 2024
1 parent 7005ec6 commit ab42d94
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 @@ -51,7 +51,7 @@ public void start() {
public void openBrowser() {
if (Desktop.isDesktopSupported() && Desktop.getDesktop()
.isSupported(Desktop.Action.BROWSE)) {
log.info("Opening browser using URL {}.", url);
log.info("Opening browser.");
try {
Desktop.getDesktop()
.browse(new URI(url));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ protected void aggregate(MojoExecutionContext mojoExecutionContext) throws MojoE

private void server(MojoExecutionContext mojoExecutionContext, EmbeddedGraphStore store) throws MojoExecutionException {
MavenProject rootModule = mojoExecutionContext.getRootModule();
getLog().info("Running server for module " + rootModule.getGroupId() + ":" + rootModule.getArtifactId() + ":" + rootModule.getVersion());
EmbeddedGraphStore embeddedGraphStore = store;
EmbeddedNeo4jServer server = embeddedGraphStore.getEmbeddedNeo4jServer();
server.start();
getLog().info("Running server for module " + rootModule.getGroupId() + ":" + rootModule.getArtifactId() + ":" + rootModule.getVersion());
if (mojoExecutionContext.getConfiguration()
.server()
.openBrowser()) {
Expand Down

0 comments on commit ab42d94

Please sign in to comment.