Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sarah.grebing
ProofScriptParser
Commits
874c5365
Commit
874c5365
authored
Apr 09, 2018
by
Sarah Grebing
Browse files
found Error true statement
parent
3129e863
Pipeline
#20989
failed with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rt-key/src/main/java/edu/kit/iti/formal/psdbg/interpreter/funchdl/ProofScriptCommandBuilder.java
View file @
874c5365
...
...
@@ -89,7 +89,7 @@ public class ProofScriptCommandBuilder implements CommandHandler<KeyData> {
Iterator
<
Node
>
nodeIterator
=
start
.
leavesIterator
();
while
(
nodeIterator
.
hasNext
())
{
Node
n
=
nodeIterator
.
next
();
LOGGER
.
error
(
n
.
isClosed
());
LOGGER
.
error
(
"Node "
+
n
.
serialNr
()+
" was closed "
+
n
.
isClosed
());
}
}
else
{
...
...
rt-key/src/main/resources/log4j2.xml
View file @
874c5365
...
...
@@ -3,6 +3,9 @@
<Appenders>
<Console
name=
"Console"
target=
"SYSTEM_OUT"
>
<PatternLayout
pattern=
"[%-5level] %msg%n"
/>
<!--<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>-->
</Console>
<File
name=
"F"
fileName=
"debug.log"
bufferSize=
"0"
bufferedIO=
"false"
append=
"false"
>
<PatternLayout
pattern=
"%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"
/>
...
...
ui/src/main/java/edu/kit/iti/formal/psdbg/gui/ProofScriptDebugger.java
View file @
874c5365
...
...
@@ -52,7 +52,7 @@ public class ProofScriptDebugger extends Application {
getClass
().
getResource
(
"debugger-ui.css"
).
toExternalForm
(),
DockNode
.
class
.
getResource
(
"default.css"
).
toExternalForm
()
);
System
.
out
.
println
(
getClass
().
getResource
(
"debugger-ui.css"
).
toExternalForm
());
logger
.
info
(
"Loading CSS class "
+
getClass
().
getResource
(
"debugger-ui.css"
).
toExternalForm
());
primaryStage
.
setTitle
(
NAME
+
" ("
+
VERSION
+
") with KeY:"
+
KEY_VERSION
);
primaryStage
.
setScene
(
scene
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment