Skip to content

Commit fcc8f46

Browse files
committed
Fix JavaFX info output channel
Fix JavaFX info output channel
1 parent 01099ba commit fcc8f46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/neuronrobotics/bowlerstudio/threed/BowlerStudio3dEngine.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ public BowlerStudio3dEngine(String name) {
339339
com.neuronrobotics.sdk.common.Log.debug("Setting Scene " + name);
340340
setSubScene(new SubScene(getRoot(), 10, 10, true, SceneAntialiasing.BALANCED));
341341

342-
// Show JavaFX diagnostics info
343-
ModuleLayer.boot().modules().stream().filter(m -> m.getName().startsWith("javafx"))
344-
.forEach(m -> System.out.println(m.getName() + " : " + m.getDescriptor().version()));
342+
// Show JavaFX diagnostics info
343+
ModuleLayer.boot().modules().stream().filter(m -> m.getName().startsWith("javafx"))
344+
.forEach(m -> com.neuronrobotics.sdk.common.Log.info(m.getName() + ": " + m.getDescriptor().version()));
345345
}
346346

347347
public void rebuild(boolean b) {

0 commit comments

Comments
 (0)