Add log info

This commit is contained in:
AlexProgrammerDE 2024-07-24 08:49:01 +02:00
parent 37806bd8b2
commit 37338b72d7

View file

@ -562,6 +562,7 @@ public class GeyserImpl implements GeyserApi {
//noinspection deprecation
File refreshTokensFile = bootstrap.getSavedUserLoginsFolder().resolve(Constants.SAVED_REFRESH_TOKEN_FILE).toFile();
if (refreshTokensFile.exists()) {
logger.info("Migrating refresh tokens to auth chains...");
TypeReference<Map<String, String>> type = new TypeReference<>() { };
Map<String, String> refreshTokens = null;
try {