Skip to content

Commit

Permalink
Fix stacktrace values in GradlePropertiesBuilder test util (#3914)
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko authored Nov 12, 2024
1 parent df672b7 commit e8d1ed6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ data class GradlePropertiesBuilder(
/** Gradle specific options. */
data class GradleArgs(
var logLevel: LogLevel? = LogLevel.LIFECYCLE,
var stacktrace: Boolean? = true,
/** Valid values are: `internal`, `all`, `full`. */
var stacktrace: String? = "all",
var debug: Boolean? = null,
var buildCache: Boolean? = true,
var buildCacheDebugLog: Boolean? = null,
Expand Down

0 comments on commit e8d1ed6

Please sign in to comment.