logging messages

This commit is contained in:
Lee
2024-07-03 16:51:36 +01:00
parent 50b8b4b2c1
commit f62a022ed5
4 changed files with 25 additions and 1 deletions

View File

@ -92,7 +92,6 @@ public class UserService implements EventListener {
@Override
public void onUserUpdateGlobalName(@NonNull BatUser user, String oldName, String newName, @NonNull UserUpdateGlobalNameEvent event) {
log.info("User \"{}\" changed their name from \"{}\" to \"{}\"", user.getName(), oldName, newName);
user.setGlobalName(newName);
}
}