- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for toPlexusLoggingLevel (0.26 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
import org.codehaus.plexus.classworlds.realm.ClassRealm; import org.codehaus.plexus.logging.LoggerManager; import org.slf4j.ILoggerFactory; import static org.apache.maven.cling.invoker.Utils.toPlexusLoggingLevel; /** * Container capsule backed by Plexus Container. * * @param <O> the options type * @param <R> the invoker request type * @param <C> the invoker context type */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/Utils.java
case INFO -> MavenExecutionRequest.LOGGING_LEVEL_INFO; case ERROR -> MavenExecutionRequest.LOGGING_LEVEL_ERROR; }; } public static int toPlexusLoggingLevel(Slf4jConfiguration.Level level) { requireNonNull(level, "level"); return switch (level) { case DEBUG -> Logger.LEVEL_DEBUG; case INFO -> Logger.LEVEL_INFO;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0)