mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
Adjust log level
This commit is contained in:
parent
c269cd9edb
commit
fb1755768c
@ -41,7 +41,7 @@ public final class Mailer {
|
|||||||
|
|
||||||
//~ Methods ..............................................................................................
|
//~ Methods ..............................................................................................
|
||||||
|
|
||||||
public Mailer(@NotNull String siteEmail, @NotNull String supportEmail,@NotNull String errorReporterEmail) {
|
public Mailer(@NotNull String siteEmail, @NotNull String supportEmail, @NotNull String errorReporterEmail) {
|
||||||
this.serverFromEmail = siteEmail;
|
this.serverFromEmail = siteEmail;
|
||||||
this.supportEmail = supportEmail;
|
this.supportEmail = supportEmail;
|
||||||
this.errorReporterEmail = errorReporterEmail;
|
this.errorReporterEmail = errorReporterEmail;
|
||||||
@ -51,7 +51,7 @@ public final class Mailer {
|
|||||||
return serverFromEmail;
|
return serverFromEmail;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void sendEmail(final String from, final String to, final String subject, final Map model,
|
public void sendEmail(final String from, final String to, final String subject, final Map<String, Object> model,
|
||||||
@NotNull final String templateMail) {
|
@NotNull final String templateMail) {
|
||||||
final MimeMessagePreparator preparator =
|
final MimeMessagePreparator preparator =
|
||||||
new MimeMessagePreparator() {
|
new MimeMessagePreparator() {
|
||||||
|
@ -141,7 +141,7 @@ final public class NotificationService {
|
|||||||
|
|
||||||
|
|
||||||
public void activateAccount(@NotNull User user) {
|
public void activateAccount(@NotNull User user) {
|
||||||
final Map<String, User> model = new HashMap<>();
|
final Map<String, Object> model = new HashMap<>();
|
||||||
model.put("user", user);
|
model.put("user", user);
|
||||||
mailer.sendEmail(mailer.getServerSenderEmail(), user.getEmail(), "[WiseMapping] Active account", model, "activationAccountMail.vm");
|
mailer.sendEmail(mailer.getServerSenderEmail(), user.getEmail(), "[WiseMapping] Active account", model, "activationAccountMail.vm");
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@ public class UserController extends BaseController {
|
|||||||
@RequestMapping(method = RequestMethod.POST, value = "/users", produces = {"application/json", "application/xml"})
|
@RequestMapping(method = RequestMethod.POST, value = "/users", produces = {"application/json", "application/xml"})
|
||||||
@ResponseStatus(value = HttpStatus.CREATED)
|
@ResponseStatus(value = HttpStatus.CREATED)
|
||||||
public void registerUser(@RequestBody RestUserRegistration registration, @NotNull HttpServletRequest request, @NotNull HttpServletResponse response) throws WiseMappingException, BindException {
|
public void registerUser(@RequestBody RestUserRegistration registration, @NotNull HttpServletRequest request, @NotNull HttpServletResponse response) throws WiseMappingException, BindException {
|
||||||
logger.info("Register new user:" + registration.getEmail());
|
logger.debug("Register new user:" + registration.getEmail());
|
||||||
|
|
||||||
// If tomcat is behind a reverse proxy, ip needs to be found in other header.
|
// If tomcat is behind a reverse proxy, ip needs to be found in other header.
|
||||||
String remoteIp = request.getHeader(REAL_IP_ADDRESS_HEADER);
|
String remoteIp = request.getHeader(REAL_IP_ADDRESS_HEADER);
|
||||||
|
@ -51,7 +51,7 @@ public class RecaptchaService {
|
|||||||
.asBytes();
|
.asBytes();
|
||||||
|
|
||||||
final Map responseBody = objectMapper.readValue(body, HashMap.class);
|
final Map responseBody = objectMapper.readValue(body, HashMap.class);
|
||||||
logger.warn("Response from recaptcha after parse: " + responseBody);
|
logger.debug("Response from recaptcha after parse: " + responseBody);
|
||||||
|
|
||||||
final Boolean success = (Boolean) responseBody.get("success");
|
final Boolean success = (Boolean) responseBody.get("success");
|
||||||
if (success != null && !success) {
|
if (success != null && !success) {
|
||||||
|
Loading…
Reference in New Issue
Block a user