- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for appendException (0.06 seconds)
-
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
} // Test appendException method with simple exception @Test public void test_appendException_simpleException() { StringBuilder buf = new StringBuilder(); Exception exception = new RuntimeException("Test error message"); monitorTarget.appendException(buf, exception); assertTrue(buf.toString().startsWith("\"exception\":\""));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
break; case "appendException": appendExceptionMethod = method; break; } } assertNotNull(appendMethod, "Should inherit append method"); assertNotNull(appendTimestampMethod, "Should inherit appendTimestamp method"); assertNotNull(appendExceptionMethod, "Should inherit appendException method"); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/MonitorTarget.java
* * @param buf the string buffer to append to * @param exception the exception to append * @return the updated buffer */ protected StringBuilder appendException(final StringBuilder buf, final Exception exception) { try (ByteArrayOutputStream baos = new ByteArrayOutputStream(); PrintWriter writer = new PrintWriter(baos, false, Constants.CHARSET_UTF_8)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.8K bytes - Click Count (0)