Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for printByEcs (0.29 sec)

  1. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            valueMap.put("ip", getClientIp());
            valueMap.put("time", DateTimeFormatter.ISO_INSTANT.format(ZonedDateTime.now()));
            if (useEcsFormat) {
                printByEcs(valueMap);
            } else {
                printByLtsv(valueMap);
            }
        }
    
        /**
         * Print the log by LTSV.
         * @param valueMap The value map.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

                    super.printByLtsv(valueMap);
                }
    
                @Override
                protected void printByEcs(final Map<String, String> valueMap) {
                    valueMap.put("time", "2022-01-01T00:00:00.000Z");
                    valueMap.remove("ip");
                    super.printByEcs(valueMap);
                }
    
                @Override
                protected void printLog(final String message) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top