Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLoggingLevel (0.23 sec)

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

            this.additionalParameters = ImmutableList.copyOf(compileOptions.getAdditionalParameters());
            this.listFiles = compileOptions.isListFiles();
            this.loggingLevel = compileOptions.getLoggingLevel();
            this.loggingPhases = compileOptions.getLoggingPhases() == null ? null : ImmutableList.copyOf(compileOptions.getLoggingPhases());
    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

            this.listFiles = listFiles;
        }
    
        /**
         * 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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top