- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,050 for Logger (0.1 sec)
-
src/test/java/org/codelibs/core/log/LoggerTest.java
*/ @Rule public ExpectedException exception = ExpectedException.none(); private final Logger logger = Logger.getLogger(getClass()); /** * @throws Exception */ @Test public void testGetLogger() throws Exception { assertThat(Logger.getLogger(getClass()), is(sameInstance(Logger.getLogger(getClass())))); } /** * @throws Exception */ @Test
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
if (logger.isDebugEnabled()) { logger.debug("{} does not exists.", dir); } return; } try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) { walk.sorted(Comparator.reverseOrder()).forEach(f -> { if (logger.isDebugEnabled()) { logger.debug("Deleting {}", f); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
if (logger.isDebugEnabled()) { logger.debug("SuggestCreator is stopped.", e); } else if (logger.isInfoEnabled()) { logger.info("SuggestCreator is stopped."); } exitCode = Constants.EXIT_FAIL; } catch (final Throwable t) { logger.error("Suggest creator does not work correctly.", t);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #isSuggestIndex(String)}: Checks if the given index name is a suggestion index.</li> * </ul> */ public class Suggester { private static final Logger logger = LogManager.getLogger(Suggester.class); /** The OpenSearch client. */ protected final Client client; /** The suggest settings. */ protected final SuggestSettings suggestSettings;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (1) -
cmd/common-main.go
err = mergeDisksLayoutFromArgs(serverCmdArgs(ctx), ctxt) } return err } func handleCommonArgs(ctxt serverCtxt) { if ctxt.JSON { logger.EnableJSON() } if ctxt.Quiet { logger.EnableQuiet() } if ctxt.Anonymous { logger.EnableAnonymous() } consoleAddr := ctxt.ConsoleAddr addr := ctxt.Addr configDir := ctxt.ConfigDir configSet := ctxt.configDirSet
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (3) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
* * @author higa */ public abstract class StatementUtil { private static final Logger logger = Logger.getLogger(StatementUtil.class); /** * Do not instantiate. */ protected StatementUtil() { } /** * Executes the SQL. * * @param statement * {@link Statement}. Must not be {@literal null}. * @param sql
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
* Provides functionality to encode/decode permission strings and extract * role type information from various file system protocols (SMB, file, FTP). */ public class PermissionHelper { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(PermissionHelper.class); /** Prefix used to identify role-based permissions */ protected String rolePrefix = "{role}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
import org.codelibs.core.collection.SLinkedList; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.log.Logger; /** * A class that handles timers. * * @author higa * */ public class TimeoutManager implements Runnable { private static final Logger logger = Logger.getLogger(TimeoutManager.class); /** * Instance for the singleton. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
permissions = null; if (logger.isDebugEnabled()) { logger.debug("Token refreshed successfully via silent authentication"); } return true; } } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Silent token refresh failed: {}", e.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
this.logger = logger; } @Override public void testArtifact(Artifact node) {} @Override public void startProcessChildren(Artifact artifact) { indent += " "; } @Override public void endProcessChildren(Artifact artifact) { indent = indent.substring(2); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0)