Remove authentication tokens from logs

This commit is contained in:
2020-09-19 13:43:03 +02:00
parent 3e594c1fbd
commit cb2a3a6540

View File

@ -23,4 +23,7 @@ public class NewAuthToken extends Event<String> {
public NewAuthToken(String token) {
super(token);
}
@Override
public String toString() { return "NewAuthToken"; }
}