- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for level3b (0.05 sec)
-
ActivityHelperTest.java
L128: public void test_login_ecs() { L129: activityHelper.useEcsFormat = true; L130: activityHelper.login(OptionalThing.empty()); L131: assertEquals( L132: "{\"@timestamp\":\"2022-01-01T00:00:00.000Z\",\"log.level\":\"INFO\",\"ecs.version\":\"1.2.0\",\"service.name\":\"fess\",\"event.dataset\":\"app\",\"process.thread.name\":\"main\",\"log.logger\":\"org.codelibs.fess.helper.ActivityHelperTest$1\",\"labels.action\":\"LOGIN\",\"labels.user\":\"-\",\"labels.p...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 14.1K bytes -
ErrorToWarnRewritePolicy.java
} L44: for (final String name : loggerNames) { L45: if (loggerName.startsWith(name)) { L46: final Level sourceLevel = event.getLevel(); L47: if (sourceLevel != Level.ERROR) { L48: return event; L49: } L50: return new Log4jLogEvent.Builder(event).setLevel(Level.WARN).build(); L51: } L52: } L53: return event; L54: } L55: L56: @PluginFactory L57: public static Err...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes -
FessWebResourceRoot.java
governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.tomcat.webresources; L17: L18:import java.util.jar.Attributes; L19:import java.util.jar.JarFile; L20:import java.util.jar.Manifest; L21:import java.util.logging.Level; L22:import java.util.logging.Logger; L23: L24:import org.apache.catalina.Context; L25:import org.apache.catalina.LifecycleException; L26:import org.apache.catalina.WebResource; L27:import org.apache.catalina.webresources.StandardRoot; L28: L29:public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
SystemHelper.java
return response; L577: } L578: L579: public HtmlResponse getRedirectResponseToRoot(final HtmlResponse response) { L580: return response; L581: } L582: L583: public void setLogLevel(final String level) { L584: final Level logLevel = Level.toLevel(level, Level.WARN); L585: System.setProperty(Constants.FESS_LOG_LEVEL, logLevel.toString()); L586: split(ComponentUtil.getFessConfig().getLoggingAppPackages(), ",") L587: .of(stream -> stream.map(St...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
SuggestJob.java
logFilePath); L162: addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY)); L163: if (logLevel == null) { L164: addSystemProperty(cmdList, "fess.log.level", null, null); L165: } else { L166: cmdList.add("-Dfess.log.level=" + logLevel); L167: } L168: stream(fessConfig.getJvmSuggestOptionsAsArray()) L169: .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(value -> cmdList.add(value))); L170:...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 10K bytes -
fess_label_en.properties
Type=Ignored Failure Type L67:labels.lastAccessTime=Last Accessed L68:labels.notificationTo=Notification To L69:labels.num=Num L70:labels.pn=Page Number L71:labels.protocolScheme=Scheme L72:labels.purgeByBots=Purge By Bots L73:labels.logLevel=Log Level L74:labels.purgeSearchLogDay=Purge Search Log L75:labels.query=Query L76:labels.queryId=Query ID L77:labels.rt=rt L78:labels.searchLog=Search Log L79:labels.sort=Sort L80:labels.start=Start Pos L81:labels.loginRequired=Login Required L82:labels.loginLink=Login...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 40.7K bytes -
GenerateThumbnailJob.java
addSystemProperty(cmdList, Constants.FESS_THUMBNAIL_PATH, null, null); L177: addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY)); L178: if (logLevel != null) { L179: cmdList.add("-Dfess.log.level=" + logLevel); L180: } L181: stream(fessConfig.getJvmThumbnailOptionsAsArray()) L182: .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(value -> cmdList.add(value))); L183: L184: File ownTmpDir = null;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
CrawlJob.java
())); L281: addSystemProperty(cmdList, "fess.log.name", getLogName("fess"), getLogName(StringUtil.EMPTY)); L282: if (logLevel == null) { L283: addSystemProperty(cmdList, "fess.log.level", null, null); L284: } else { L285: cmdList.add("-Dfess.log.level=" + logLevel); L286: if ("debug".equalsIgnoreCase(logLevel)) { L287: cmdList.add("-Dorg.apache.tika.service.error.warn=true"); L288: } L289: } L290: strea...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 15.1K bytes -
fess_label_ru.properties
guration=Запрос к OpenSearch L836:labels.esreq_request_file=Request File L837:labels.requestFile=Request File L838:labels.esreq_button_upload=Send L839:labels.facet_is_not_found=Нет совпадений. L840:labels.expires=Expired L841:labels.logLevel=Log Level L842:labels.stopwordsFile=Stopwords File L843:labels.stemmerOverrideFile=Stemmer Override File L844:labels.protwordsFile=Protwords File L845:labels.urlExpr=Condition L846:labels.ldapGroupFilter=Group Filter L847:labels.ldapMemberofAttribute=memberOf...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 45.6K bytes -
ActivityHelper.java
protected void printByEcs(final Map<String, String> valueMap) { L148: final StringBuilder buf = new StringBuilder(100); L149: buf.append("{\"@timestamp\":\"").append(valueMap.remove("time")).append('"'); L150: buf.append(",\"log.level\":\"INFO\""); L151: buf.append(",\"ecs.version\":\"").append(ecsVersion).append('"'); L152: buf.append(",\"service.name\":\"").append(ecsServiceName).append('"'); L153: buf.append(",\"event.dataset\":\"").append(ecsEventDataset).append('"');...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.7K bytes