Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLoggingSearchUseLogfile (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

                final FavoriteLog favoriteLog = new FavoriteLog();
                favoriteLogLambda.accept(userInfo, favoriteLog);
                favoriteLogBhv.insert(favoriteLog);
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    ComponentUtil.getSearchLogHelper().writeSearchLogEvent(favoriteLog);
                }
                return true;
            }).orElse(false);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                    final SuggestHelper suggestHelper = ComponentUtil.getSuggestHelper();
                    suggestHelper.indexFromSearchLog(searchLogList);
                }
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    searchLogList.forEach(this::writeSearchLogEvent);
                }
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLoggingSearchUseLogfile();
    
        /**
         * Get the value for the key 'logging.app.packages'. <br>
         * The value is, e.g. org.codelibs,org.dbflute,org.lastaflute <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top