- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 487 for loggers (0.04 sec)
-
src/main/java/org/codelibs/core/log/Logger.java
* @return {@link Logger} */ public static synchronized Logger getLogger(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); if (!initialized) { initialize(); } Logger logger = loggers.get(clazz); if (logger == null) { logger = new Logger(clazz); loggers.put(clazz, logger); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
public class ErrorToWarnRewritePolicy implements RewritePolicy { /** Array of logger name prefixes to apply the ERROR to WARN conversion */ private final String[] loggerNames; /** * Constructs a new ErrorToWarnRewritePolicy with the specified logger names. * * @param loggerNames array of logger name prefixes to convert ERROR to WARN */ public ErrorToWarnRewritePolicy(final String[] loggerNames) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JclLoggerAdapterFactory.java
* governing permissions and limitations under the License. */ package org.codelibs.core.log; import org.apache.commons.logging.LogFactory; /** * Factory for creating adapters that use (Jakarta) Commons Logging loggers. * * @author koichik */ class JclLoggerAdapterFactory implements LoggerAdapterFactory { @Override public LoggerAdapter getLoggerAdapter(final Class<?> clazz) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapterFactory.java
* governing permissions and limitations under the License. */ package org.codelibs.core.log; /** * Factory for creating adapters that use java.util.logging loggers. * * @author koichik */ class JulLoggerAdapterFactory implements LoggerAdapterFactory { @Override public LoggerAdapter getLoggerAdapter(final Class<?> clazz) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1002 bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
/** * Adapter that uses java.util.logging loggers. * * @author koichik */ class JulLoggerAdapter implements LoggerAdapter { protected final String sourceClass; protected final java.util.logging.Logger logger; public JulLoggerAdapter(final Class<?> clazz) { sourceClass = clazz.getName(); logger = java.util.logging.Logger.getLogger(clazz.getName()); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.9K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt
re.printStackTrace() } } private fun enableLogging( logger: String, tag: String, ) { val logger = Logger.getLogger(logger) if (configuredLoggers.add(logger)) { logger.useParentHandlers = false // log based on levels at startup to avoid logging each frame logger.level = when { Log.isLoggable(tag, Log.DEBUG) -> Level.FINE
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
* collected, and this class can detect when the main class loader has been garbage collected and * stop itself. */ public class Finalizer implements Runnable { private static final Logger logger = Logger.getLogger(Finalizer.class.getName()); /** Name of FinalizableReference.class. */ private static final String FINALIZABLE_REFERENCE = "com.google.common.base.FinalizableReference"; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
if (ssoManager.available()) { if (logger.isDebugEnabled()) { logger.debug("SSO is available but no user found."); } saveError(messages -> messages.addErrorsSsoLoginError(GLOBAL)); } if (logger.isDebugEnabled()) { logger.debug("Redirecting to login page."); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/TestLogHandler.java
* * <pre> * TestLogHandler handler; * * protected void setUp() throws Exception { * super.setUp(); * handler = new TestLogHandler(); * SomeClass.logger.addHandler(handler); * addTearDown(new TearDown() { * public void tearDown() throws Exception { * SomeClass.logger.removeHandler(handler); * }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CloseableUtil.java
*/ protected CloseableUtil() { } private static final Logger logger = Logger.getLogger(CloseableUtil.class); /** * Closes a {@link Closeable}. * <p> * If an exception is thrown by {@link Closeable#close()}, an error message is logged. The exception is not rethrown. This prevents the original exception from being lost in situations like the following: * </p> * <pre>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0)