branch develop updated (f0438cb4 -> c774ee9c)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git from f0438cb4 fixes #124 soumission multiple de choix new c774ee9c logs trop verbeux The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit c774ee9c445dae568487ae79d083d75a0843aa45 Author: Kevin Morin <morin@codelutin.com> Date: Fri Aug 4 12:16:36 2017 +0200 logs trop verbeux Summary of changes: .../src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java | 4 ++-- .../org/chorem/pollen/services/service/security/SecurityService.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit c774ee9c445dae568487ae79d083d75a0843aa45 Author: Kevin Morin <morin@codelutin.com> Date: Fri Aug 4 12:16:36 2017 +0200 logs trop verbeux --- .../src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java | 4 ++-- .../org/chorem/pollen/services/service/security/SecurityService.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java index 508bfd0f..ffcc4507 100644 --- a/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java +++ b/pollen-rest-api/src/main/java/org/chorem/pollen/rest/api/v1/AuthApi.java @@ -113,8 +113,8 @@ public class AuthApi { String login = lp[0]; String password = lp[1]; - if (log.isInfoEnabled()) { - log.info("login@password:: " + login + "@" + password); + if (log.isDebugEnabled()) { + log.info("login: " + login); } PollenEntityRef<PollenUser> userPollenEntityRef = securityService.login(login, password, false); diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/SecurityService.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/SecurityService.java index 6ab180fc..6b42af94 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/security/SecurityService.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/security/SecurityService.java @@ -495,8 +495,8 @@ public class SecurityService extends PollenServiceSupport { // Generate all principals from given security context Set<String> permissions = generatePermissions(securityContext); - if (log.isInfoEnabled()) { - log.info("All permissions:\n" + Joiner.on("\n").join(permissions)); + if (log.isDebugEnabled()) { + log.debug("All permissions:\n" + Joiner.on("\n").join(permissions)); } // Create Subject -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm