- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 13 for throwable (0.08 seconds)
-
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
private final String throwable; /** * Constructs a new LogNotificationEvent. * * @param timestamp the event timestamp in milliseconds * @param level the log level name * @param loggerName the logger name * @param message the log message * @param throwable the throwable string, or null */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_log.notification_queue/notification_queue.json
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 386 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java
source.put("level", event.getLevel()); source.put("loggerName", event.getLoggerName()); source.put("message", event.getMessage()); source.put("throwable", event.getThrowable() != null ? event.getThrowable() : ""); source.put("timestamp", event.getTimestamp()); bulkRequest.add(client.prepareIndex().setIndex(indexName).setSource(source));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
} jobLog.setScriptResult(ret.toString()); } jobLog.setJobStatus(Constants.OK); } catch (final Throwable t) { logger.warn("Failed to execute job: id={}, script={}", id, script, t); jobLog.setJobStatus(Constants.FAIL);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/LogNotificationAppender.java
try { helper = ComponentUtil.getLogNotificationHelper(); } catch (final Exception e) { return; } String throwableStr = null; final Throwable thrown = event.getThrown(); if (thrown != null) { final StringWriter sw = new StringWriter(); thrown.printStackTrace(new PrintWriter(sw)); throwableStr = sw.toString();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 12.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java
} } private static void assertThrows(final Class<? extends Throwable> expectedType, final Runnable runnable) { try { runnable.run(); throw new AssertionError("Expected " + expectedType.getSimpleName() + " to be thrown"); } catch (final Throwable t) { if (!expectedType.isInstance(t)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 22.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
events.add(new LogNotificationEvent(((Number) source.get("timestamp")).longValue(), (String) source.get("level"), (String) source.get("loggerName"), (String) source.get("message"), (String) source.get("throwable"))); docIds.add(hit.getId()); } final int maxDetailsLength = fessConfig.getLogNotificationMaxDetailsLengthAsInteger();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.4K bytes - Click Count (0)