Skip to content

Commit 63789a2

Browse files
author
Volker Aufschild
committed
eclipse files and added java.util.logging
1 parent 2a7c58f commit 63789a2

4 files changed

Lines changed: 40 additions & 1 deletion

File tree

.classpath

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/resources"/>
4+
<classpathentry kind="src" path="src/main/java"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6+
<classpathentry kind="con" path="at.bestsolution.efxclipse.tooling.jdt.core.JAVAFX_CONTAINER"/>
7+
<classpathentry kind="output" path="bin"/>
8+
</classpath>

.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>javaFx_tutorial</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>

src/main/java/de/voder/tutorial/javafx/LoginForm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void start(Stage primaryStage) {
6464

6565
@Override
6666
public void handle(ActionEvent ev) {
67-
LOGGER.info("Button clicked: " + ev);
67+
LOGGER.fine("Button clicked: " + ev);
6868
targetText.setFill(Color.FIREBRICK);
6969
targetText.setText("Login failed!");
7070
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
handlers=java.util.logging.ConsoleHandler
2+
3+
level=INFO
4+
5+
java.util.logging.ConsoleHandler.level=ALL
6+
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
7+
8+
de.voder.tutorial.level=FINE

0 commit comments

Comments
 (0)