Skip to content

Commit 652addc

Browse files
authored
Rel 5 17 patches (#2893)
* chore: new version commit: v5.17.1-SNAPSHOT * chore: change two log lines to debug
1 parent 0c46611 commit 652addc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# TODO: Change to org.apereo.portal
2121
group=org.jasig.portal
22-
version=6.0.0-SNAPSHOT
22+
version=5.17.1-SNAPSHOT
2323

2424
# Project Metadata (NB: copied from CAS; may or may not be used by us; review later)
2525
projectUrl=https://www.apereo.org/projects/uPortal

uPortal-security/uPortal-security-mvc/src/main/java/org/apereo/portal/url/ClassicMaxInactiveStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Integer calcMaxInactive(IPerson person) {
4444
assert permissions != null;
4545
if (permissions.length == 0) {
4646
// No max inactive permission set for this user
47-
log.info(
47+
log.debug(
4848
"No {} permissions apply to user '{}'",
4949
MAX_INACTIVE_ATTR,
5050
person.getAttribute(IPerson.USERNAME));

uPortal-utils/uPortal-utils-core/src/main/java/org/apereo/portal/utils/personalize/PersonalizerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private Map<String, String> createTokenMappingForPerson(IPerson person) {
107107
log.debug("Person attribute pair added for key: [{}], [{}]", key, value);
108108
replacements.put(key, value);
109109
} else {
110-
log.warn("Person attribute value is not a string!! : [{}]", key);
110+
log.debug("Person attribute value is not a string : [{}]", key);
111111
}
112112
}
113113
return replacements;

0 commit comments

Comments
 (0)