Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for LogLevel (0.15 sec)

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

        public void setLogLevel(final String level) {
            final Level logLevel = Level.toLevel(level, Level.WARN);
            System.setProperty(Constants.FESS_LOG_LEVEL, logLevel.toString());
            split(ComponentUtil.getFessConfig().getLoggingAppPackages(), ",")
                    .of(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).forEach(s -> Configurator.setLevel(s, logLevel)));
        }
    
        public String getLogLevel() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

            return this;
        }
    
        public ExecJob logFilePath(final String logFilePath) {
            this.logFilePath = logFilePath;
            return this;
        }
    
        public ExecJob logLevel(final String logLevel) {
            this.logLevel = logLevel;
            return this;
        }
    
        public ExecJob logSuffix(final String logSuffix) {
            this.logSuffix = logSuffix.trim().replaceAll("\\s", "_");
            return this;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/SuggestJob.java

            addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY));
            if (logLevel == null) {
                addSystemProperty(cmdList, "fess.log.level", null, null);
            } else {
                cmdList.add("-Dfess.log.level=" + logLevel);
            }
            stream(fessConfig.getJvmSuggestOptionsAsArray())
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 3000)
        public String notificationLogin;
    
        @Size(max = 3000)
        public String notificationSearchTop;
    
        @Size(max = 10)
        public String logLevel;
    
        @Size(max = 1000)
        public String storageEndpoint;
    
        @Size(max = 1000)
        public String storageAccessKey;
    
        @Size(max = 1000)
        public String storageSecretKey;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            final HtmlResponse response = HtmlResponse.fromForwardPath("/");
            assertEquals(response, systemHelper.getRedirectResponseToRoot(response));
        }
    
        public void test_getLogLevel() {
            final String logLevel = systemHelper.getLogLevel();
            try {
                systemHelper.setLogLevel("DEBUG");
                assertEquals("DEBUG", systemHelper.getLogLevel());
                systemHelper.setLogLevel("INFO");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="logLevel" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.log_level"/></label>
                                        <div class="form-inline col-sm-9">
                                            <la:errors property="logLevel"/>
                                            <la:select styleId="logLevel" property="logLevel" styleClass="form-control">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_de.properties

    labels.facet_is_not_found=Kein Treffer.
    labels.doc_score=Bewertung:
    labels.development_mode_warning=Läuft im Entwicklermodus. Bitte installieren Sie einen Standalone-OpenSearch-Server für produktiven Einsatz.
    labels.logLevel=Protokoll-Level
    labels.stopwordsFile=Stopwörter-Datei
    labels.stemmerOverrideFile=Stemmer-Override-Datei
    labels.protwordsFile=Protwords-Datei
    labels.urlExpr=Bedingung
    labels.ldapGroupFilter=Gruppen-Filter
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.lastAccessTime	=	Dernier accès
    labels.notificationTo	=	Notification à
    labels.num	=	Numéro
    labels.pn	=	Numéro de page
    labels.protocolScheme	=	Schème
    labels.purgeByBots	=	Purge par les bots
    labels.logLevel	=	Niveau de journalisation
    labels.purgeSearchLogDay	=	Purger le journal de recherche
    labels.query	=	Requête
    labels.queryId	=	ID de requête
    labels.rt	=	rt
    labels.searchLog	=	Journal de recherche
    labels.sort	=	Trier
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    job.system.job.ids=default_crawler
    job.template.title.web=Web Crawler - {0}
    job.template.title.file=File Crawler - {0}
    job.template.title.data=Data Crawler - {0}
    job.template.script=return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute();
    job.max.crawler.processes=0
    job.default.script=groovy
    
    processors=0
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. Data Crawler - {0} */
        String JOB_TEMPLATE_TITLE_DATA = "job.template.title.data";
    
        /** The key of the configuration. e.g. return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute(); */
        String JOB_TEMPLATE_SCRIPT = "job.template.script";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
Back to top