Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for printThreadDumpAsError (0.18 seconds)

  1. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                // printThreadDumpAsError()
                java.lang.reflect.Method errorMethod = ThreadDumpUtil.class.getMethod("printThreadDumpAsError");
                assertTrue("printThreadDumpAsError should be static", java.lang.reflect.Modifier.isStatic(errorMethod.getModifiers()));
                assertTrue("printThreadDumpAsError should be public", java.lang.reflect.Modifier.isPublic(errorMethod.getModifiers()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

        public static void printThreadDumpAsWarn() {
            processThreadDump(logger::warn);
        }
    
        /**
         * Prints thread dump information to the logger at ERROR level.
         */
        public static void printThreadDumpAsError() {
            processThreadDump(logger::error);
        }
    
        /**
         * Writes thread dump information to the specified file.
         *
         * @param file the file path to write the thread dump to
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
Back to Top