Skip to content

Commit

Permalink
Add logback to compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
bkiefer committed May 23, 2024
1 parent 9ec9e12 commit 5b2c212
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@

public class IncludeInfo extends BasicInfo {
protected List<ErrorInfo> _errors = new ArrayList<>();
/** this is the *whole* relative path down from where the topmost .rudi file
* is located
*/
protected String[] relativePath;
/** Are there errors somewhere in the subtree? */
protected boolean failure = false;

public static void saveInfo(IncludeInfo info, Writer w) {
Expand Down

0 comments on commit 5b2c212

Please sign in to comment.