- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 123 for Debugf (0.1 sec)
-
SamlAuthenticator.java
@PostConstruct L72: public void init() { L73: if (logger.isDebugEnabled()) { L74: logger.debug("Initialize {}", this.getClass().getSimpleName()); L75: } L76: ComponentUtil.getSsoManager().register(this); L77: L78: defaultSettings = new HashMap<>(); L79: defaultSettings.put("onelogin.saml2.strict", "true"); L80: defaultSettings.put("onelogin.saml2.debug", "false"); L81: defaultSettings.put("onelogin.saml2.sp.entityid", "http://localhost:8080/sso/metadata");...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.2K bytes -
RoleQueryHelper.java
cipher.decryptoText(rolesStr); L239: } catch (final Exception e) { L240: if (logger.isDebugEnabled()) { L241: logger.debug("Failed to decrypt {}", rolesStr, e); L242: } L243: return; L244: } L245: } L246: L247: if (logger.isDebugEnabled()) { L248: logger.debug("role: original: {}, decrypto: {}", value, rolesStr); L249: } L250: L251: if (valueSeparator.length() > 0) { L252: final...github.com/codelibs/fess/src/main/java/org/code...Thu Jul 25 01:48:41 UTC 2024 11.5K bytes -
NotificationHelper.java
(CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) { L52: if (response.getHttpStatusCode() == 200) { L53: if (logger.isDebugEnabled()) { L54: logger.debug("Sent {} to {}.", body, url); L55: } L56: } else { L57: logger.warn("Failed to send {} to {}. HTTP Status is {}. {}", body, url, response.getHttpStatusCode(), L58: res...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
BaseThumbnailGenerator.java
L125: if (logger.isDebugEnabled()) { L126: logger.debug("generator path: {}", filePath); L127: } L128: return filePath; L129: } L130: } L131: } L132: if (logger.isDebugEnabled()) { L133: logger.debug("generator path: {}", s); L134: } L135: return s; L136: }).allMatch(s...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 11.1K bytes -
FessEnv.java
L101: /** L102: * Get the value for the key 'framework.debug'. <br> L103: * The value is, e.g. false <br> L104: * comment: Does it enable the Framework internal debug? (true only when emergency) L105: * @return The value of found property. (NotNull: if not found, exception but basically no way) L106: */ L107: String getFrameworkDebug(); L108: L109: /** L110: * Is the property for the key 'framework.debug' true? <br> L111: * The value is, e.g. false <br> L112: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
OpenIdConnectAuthenticator.java
L152: final String jwtSigniture = new String(decodeBase64(jwt[2]), Constants.UTF_8_CHARSET); L153: L154: if (logger.isDebugEnabled()) { L155: logger.debug("jwtHeader: {}", jwtHeader); L156: logger.debug("jwtClaim: {}", jwtClaim); L157: logger.debug("jwtSigniture: {}", jwtSigniture); L158: } L159: L160: // TODO validate signiture L161: L162: final Map<String, Object> attributes = new HashMap<>(); L163:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.3K bytes -
SystemHelper.java
new HashMap<>(); L129: L130: protected Set<String> waitingThreadNames = Collections.synchronizedSet(new HashSet<>()); L131: L132: @PostConstruct L133: public void init() { L134: if (logger.isDebugEnabled()) { L135: logger.debug("Initialize {}", this.getClass().getSimpleName()); L136: } L137: final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC")); L138: cal.set(2026, 3 - 1, 1); // EOL Date L139: eolTime = cal.getTimeInMillis(); L140:...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
SsoAction.java
SsoManager ssoManager = ComponentUtil.getSsoManager(); L50: final LoginCredential loginCredential = ssoManager.getLoginCredential(); L51: if (loginCredential == null) { L52: if (logger.isDebugEnabled()) { L53: logger.debug("No user in SSO request."); L54: } L55: if (ssoManager.available()) { L56: saveError(messages -> messages.addErrorsSsoLoginError(GLOBAL)); L57: } L58: return redirect(LoginAction.class); L59:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
KeyMatchHelper.java
boolQuery = QueryBuilders.boolQuery(); L75: if (logger.isDebugEnabled()) { L76: logger.debug("Loading KeyMatch Query: {}, Size: {}", keyMatch.getQuery(), keyMatch.getMaxSize()); L77: } L78: getDocumentList(keyMatch).stream().map(doc -> { L79: if (logger.isDebugEnabled()) { L80: logger.debug("Loaded KeyMatch doc: {}", doc); L81: } L82: return DocumentUtil.getValue(doc,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes -
PermissionHelper.java
roleTypeList.add(fessConfig.getRoleSearchDeniedPrefix() + accountId); L170: } L171: } L172: } L173: if (logger.isDebugEnabled()) { L174: logger.debug("smbUrl:{} roleType:{}", responseData.getUrl(), roleTypeList); L175: } L176: } else if (responseData.getUrl().startsWith("smb1:")) { L177: final jcifs.smb1.smb1.SID[] allowedSids = L178: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 12.3K bytes