|
@@ -72,7 +72,7 @@ public class Groups {
|
|
|
long now = System.currentTimeMillis();
|
|
|
// if cache has a value and it hasn't expired
|
|
|
if (groups != null && (groups.getTimestamp() + cacheTimeout > now)) {
|
|
|
- LOG.info("Returning cached groups for '" + user + "'");
|
|
|
+ LOG.debug("Returning cached groups for '" + user + "'");
|
|
|
return groups.getGroups();
|
|
|
}
|
|
|
// Create and cache user's groups
|