Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
JastAdd
RagConnect
Commits
92a9d0e4
Commit
92a9d0e4
authored
Jan 19, 2021
by
René Schöne
Browse files
Only print compiler messages if --verbose flag is given.
parent
3d6f61cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
ragconnect.base/src/main/java/org/jastadd/ragconnect/compiler/Compiler.java
View file @
92a9d0e4
...
...
@@ -138,7 +138,9 @@ public class Compiler extends AbstractCompiler {
}
private
void
printMessage
(
String
message
)
{
System
.
out
.
println
(
message
);
if
(
optionVerbose
.
value
())
{
System
.
out
.
println
(
message
);
}
}
private
void
writeToFile
(
Path
path
,
String
str
)
throws
CompilerException
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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