-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1323 from lf-lang/silence-xtext-logs
Reduced verbosity in reported output
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd" > | ||
<log4j:configuration> | ||
|
||
<category name="org.eclipse.xtext.linking.impl"> | ||
<priority value="off"/> | ||
</category> | ||
|
||
<category name="org.eclipse.xtext.validation"> | ||
<priority value="off"/> | ||
</category> | ||
<category name="org.eclipse.xtext.parser.antlr"> | ||
<priority value="off"/> | ||
</category> | ||
<category name="org.eclipse.xtext.util"> | ||
<priority value="off"/> | ||
</category> | ||
</log4j:configuration> |