Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for loggingLevel (0.11 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        public void setListFiles(boolean listFiles) {
            this.listFiles = listFiles;
        }
    
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
        }
    
        public List<String> getLoggingPhases() {
            return loggingPhases;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

         * Specifies the amount of logging.
         * Legal values:  none, verbose, debug
         */
        @Console
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
        }
    
        /**
         * Phases of the compiler to log.
         * Legal values: namer, typer, pickler, uncurry, tailcalls, transmatch, explicitouter, erasure,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.scala.ScalaCompileOptions.xml

                </tr>
                <tr>
                    <td>listFiles</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>loggingLevel</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>loggingPhases</td>
                    <td><literal>null</literal></td>
                </tr>
            </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.language.scala.tasks.BaseScalaCompileOptions.xml

                </tr>
                <tr>
                    <td>listFiles</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
                    <td>loggingLevel</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>loggingPhases</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top