Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testLogging (0.04 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/ErrorReportingTestListener.java

        private Set<Descriptor> failedTests = new LinkedHashSet<>();
    
        public ErrorReportingTestListener(TestLogging testLogging, Logger taskLogger, File outputDirectory) {
            this.formatter = new FullExceptionFormatter(testLogging);
            this.taskLogger = taskLogger;
            this.outputDirectory = outputDirectory;
        }
    
        @Override
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

                test.systemProperty("io.netty.noKeySetOptimization", "true");
                test.systemProperty("io.netty.recycler.maxCapacityPerThread", "0");
    
                test.testLogging(logging -> {
                    logging.setShowExceptions(true);
                    logging.setShowCauses(true);
                    logging.setExceptionFormat("full");
                });
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
Back to Top