Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setLoggingLevel (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

            mavenExecutionRequest.setReactorFailureBehavior(MavenExecutionRequest.REACTOR_FAIL_FAST);
            mavenExecutionRequest.setStartInstant(MonotonicClock.now());
            mavenExecutionRequest.setLoggingLevel(MavenExecutionRequest.LOGGING_LEVEL_INFO);
            mavenExecutionRequest.setDegreeOfConcurrency(1);
            mavenExecutionRequest.setBuilderId("singlethreaded");
            return mavenExecutionRequest;
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (cliRequest.verbose) {
                cliRequest.request.setLoggingLevel(MavenExecutionRequest.LOGGING_LEVEL_DEBUG);
                slf4jConfiguration.setRootLoggerLevel(Slf4jConfiguration.Level.DEBUG);
            } else if (cliRequest.quiet) {
                cliRequest.request.setLoggingLevel(MavenExecutionRequest.LOGGING_LEVEL_ERROR);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

        }
    
        protected void populateRequest(C context, Lookup lookup, MavenExecutionRequest request) throws Exception {
            populateRequestFromSettings(request, context.effectiveSettings);
    
            request.setLoggingLevel(toMavenExecutionRequestLoggingLevel(context.loggerLevel));
            request.setLocalRepositoryPath(context.localRepositoryPath.toFile());
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
Back to Top