Skip to content

Commit

Permalink
Add missing debug config to avoid warnings
Browse files Browse the repository at this point in the history
Fixes quarkusio#27778

(cherry picked from commit 15424f4)
  • Loading branch information
gsmet committed Oct 3, 2022
1 parent afa42b8 commit 7511480
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 7511480

Please sign in to comment.