- Sort Score
- Num 10 results
- Language All
Results 11 - 18 of 18 for isWarnEnabled (0.09 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
Created: 2026-04-05 03:35 - Last Modified: 2025-04-05 11:52 - 6.6K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
} populateFromSettings(request, settingsResult.getEffectiveSettings()); if (!settingsResult.getProblems().isEmpty() && LOGGER.isWarnEnabled()) { LOGGER.warn(""); LOGGER.warn("Some problems were encountered while building the effective settings"); for (SettingsProblem problem : settingsResult.getProblems()) {Created: 2026-04-05 03:35 - Last Modified: 2025-04-19 18:49 - 12K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
} else if (cae.isInfoEnabled()) { logger.info("[{}] {}", failureUrlId, cae.getMessage()); } else if (cae.isWarnEnabled()) { logger.warn("[{}] Crawling Access Exception: url={}", failureUrlId, urlQueue.getUrl(), cae); } else if (cae.isErrorEnabled()) {
Created: 2026-03-31 13:07 - Last Modified: 2025-11-28 16:29 - 8.3K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
infoMain(prefix + "[ " + project.getPackaging() + " ]" + suffix); } } @Override public void mojoSkipped(ExecutionEvent event) { if (logger.isWarnEnabled()) { init(); logger.warn( "Goal '{}' requires online mode for execution but Maven is currently offline, skipping", event.getMojoExecution().getGoal());
Created: 2026-04-05 03:35 - Last Modified: 2024-11-08 08:49 - 17.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/log/Logger.java
switch (logLevel) { case DEBUG: return log.isDebugEnabled(); case INFO: return log.isInfoEnabled(); case WARN: return log.isWarnEnabled(); case ERROR: return log.isErrorEnabled(); case FATAL: return log.isFatalEnabled(); default:
Created: 2026-04-03 20:58 - Last Modified: 2026-02-12 12:10 - 13.5K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
infoMain(prefix + "[ " + project.getPackaging() + " ]" + suffix); } } @Override public void mojoSkipped(ExecutionEvent event) { if (logger.isWarnEnabled()) { init(); logger.warn( "Goal '{}' requires online mode for execution but Maven is currently offline, skipping", event.getMojoExecution().getGoal());
Created: 2026-04-05 03:35 - Last Modified: 2024-12-13 15:40 - 17.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
return "3"; } if (logger.isInfoEnabled()) { return "5"; } if (logger.isWarnEnabled()) { return "6"; } if (logger.isErrorEnabled()) { return "7"; } return "0"; }
Created: 2026-03-31 13:07 - Last Modified: 2026-03-15 08:18 - 18.2K bytes - Click Count (3) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
executionRequestPopulator.populateFromToolchains(cliRequest.request, toolchainsResult.getEffectiveToolchains()); if (!toolchainsResult.getProblems().isEmpty() && slf4jLogger.isWarnEnabled()) { slf4jLogger.warn(""); slf4jLogger.warn("Some problems were encountered while building the effective toolchains"); for (Problem problem : toolchainsResult.getProblems()) {Created: 2026-04-05 03:35 - Last Modified: 2025-10-27 13:24 - 78.1K bytes - Click Count (0)