cleanup home command

This commit is contained in:
Lee
2024-06-27 17:38:28 +01:00
parent 406d6b7164
commit 2c5c1ecc41
2 changed files with 69 additions and 28 deletions

View File

@ -53,7 +53,7 @@ public class UserService {
return user;
}
BatUser user = userRepository.save(new BatUser(id));
log.info("Created user \"{}\" in {}ms", id, System.currentTimeMillis() - start);
log.info("Created user for \"{}\" in {}ms", user.getDiscordUser().getName(), System.currentTimeMillis() - start);
return user;
}