Skip to content

Commit

Permalink
Merge pull request #28312 from gsmet/debug-config
Browse files Browse the repository at this point in the history
Add missing debug config to avoid warnings
  • Loading branch information
gsmet authored Sep 30, 2022
2 parents 317bfa3 + 15424f4 commit 543ba54
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,18 @@ public class DebugConfig {
*/
@ConfigItem
Optional<String> generatedClassesDir;

/**
* If set to a directory, all transformed classes (e.g. Panache entities) will be written into that directory
*/
@ConfigItem
Optional<String> transformedClassesDir;

/**
* If set to a directory, ZIG files for generated code will be written into that directory.
* <p>
* A ZIG file is a textual representation of the generated code that is referenced in the stacktraces.
*/
@ConfigItem
Optional<String> generatedSourcesDir;
}

0 comments on commit 543ba54

Please sign in to comment.