Skip to content

Commit

Permalink
Fix logging for opening workflow tools
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainHills committed Sep 22, 2024
1 parent c0066d7 commit 9928c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ version = '1.0.0'

jar {
manifest {
attributes(
'Main-Class': 'com.antonbondoc.Antika'
)
attributes 'Main-Class': 'com.antonbondoc.Antika'
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/antonbondoc/WorkflowHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void openTools(String workflow, List<Tool> tools) {
}
}

log.debug("Opening tools for workflow");
log.info("Opening tools for workflow");
openDesktopApp(appPaths);
openWebApp(webUrls);
}
Expand Down

0 comments on commit 9928c45

Please sign in to comment.