Added logging and fixed some security concerns

This commit is contained in:
delvh
2020-08-01 14:57:08 +02:00
parent 41cd11f180
commit fab573efe1
5 changed files with 41 additions and 12 deletions

View File

@ -41,4 +41,7 @@ public class PasswordChangeRequest extends Event<String> {
* @since Envoy Common v0.2-beta
*/
public String getOldPassword() { return oldPassword; }
@Override
public String toString() { return "PasswordChangeRequest[id=" + id + "]"; }
}