Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DefaultLoggingConfiguration (0.63 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/DefaultLoggingConfiguration.java

    import org.gradle.api.logging.configuration.ShowStacktrace;
    import org.gradle.api.logging.configuration.WarningMode;
    
    import java.io.Serializable;
    
    public class DefaultLoggingConfiguration implements Serializable, LoggingConfiguration {
        private LogLevel logLevel = LogLevel.LIFECYCLE;
        private ShowStacktrace showStacktrace = ShowStacktrace.INTERNAL_EXCEPTIONS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/LoggingCommandLineConverterTest.groovy

    import spock.lang.Specification
    
    class LoggingCommandLineConverterTest extends Specification {
        def converter = new LoggingConfigurationBuildOptions().commandLineConverter()
        def expectedConfig = new DefaultLoggingConfiguration()
    
        def convertsEmptyArgs() {
            expect:
            checkConversion([])
        }
    
        def convertsDebugLevel() {
            expectedConfig.logLevel = LogLevel.DEBUG
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

        protected ExecutionCompleter createCompleter() {
            return new ProcessCompleter();
        }
    
        @VisibleForTesting
        protected Action<Throwable> createErrorHandler() {
            DefaultLoggingConfiguration loggingConfiguration = new DefaultLoggingConfiguration();
            loggingConfiguration.setShowStacktrace(ShowStacktrace.ALWAYS_FULL);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DebugLoggerWarningActionTest.groovy

    import org.gradle.api.Action
    import org.gradle.api.logging.LogLevel
    import org.gradle.api.logging.configuration.LoggingConfiguration
    import org.gradle.integtests.tooling.fixture.TextUtil
    import org.gradle.internal.logging.DefaultLoggingConfiguration
    import org.gradle.internal.logging.ToStringLogger
    import org.gradle.launcher.bootstrap.ExecutionListener
    import spock.lang.Specification
    
    class DebugLoggerWarningActionTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top