- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for isWarnEnabled (0.21 seconds)
-
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) -
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)