Skip to content

Commit 7801187

Browse files
authored
Merge pull request #1535 from zfi/0.101
Add logging to account confirmation process
2 parents 18b0b28 + ed6750d commit 7801187

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* To change this license header, choose License Headers in Project Properties.
3+
* To change this template file, choose Tools | Templates
4+
* and open the template in the editor.
5+
*/
6+
/**
7+
* Author: Jim Ewald
8+
* Created: Aug 27, 2018
9+
*
10+
* Add a field to the project table to store a JSON encoded group of project
11+
* settings.
12+
*/
13+
14+
ALTER TABLE blocklyprop.project ADD settings TEXT NULL;
15+

src/main/java/com/parallax/server/blocklyprop/servlets/ConfirmServlet.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public void confirmToken(HttpServletRequest req, HttpServletResponse resp)
9090
.forward(req, resp);
9191
} else {
9292
try {
93+
LOG.info("Trying to confirm: {}, {}", email, token);
9394
// Validate the email and token with the Cloud Session server
9495
if (cloudSessionLocalUserService.doConfirm(email, token)) {
9596

0 commit comments

Comments
 (0)