Class DebugOptions

java.lang.Object
org.gradle.api.tasks.compile.DebugOptions
All Implemented Interfaces:
Serializable

public abstract class DebugOptions extends Object implements Serializable
Debug options for Java compilation.
See Also:
  • Constructor Details

    • DebugOptions

      public DebugOptions()
  • Method Details

    • getDebugLevel

      @Optional @Input public abstract Property<String> getDebugLevel()
      A comma-separated list of debug information to be generated during compilation. The list may contain any of the following keywords (without spaces in between):
      source
      Source file debugging information
      lines
      Line number debugging information
      vars
      Local variable debugging information

      Alternatively, a value of none means debug information will not be generated.

      When the value is null, only source and line debugging information will be generated.