1
0
mirror of https://github.com/Suiranoil/SkinRestorer.git synced 2026-01-16 04:42:12 +00:00

log "failed to fetch skin on first join" as warning

This commit is contained in:
2024-07-16 19:53:27 +03:00
parent 65957b61c5
commit 7bceb0d5ed

View File

@@ -61,7 +61,7 @@ public abstract class ServerLoginPacketListenerImplMixin {
var value = SkinValue.fromProviderContextWithValue(context, result.getSuccessValue().orElse(null));
SkinRestorer.getSkinStorage().setSkin(authenticatedProfile.getId(), value);
} else {
SkinRestorer.LOGGER.error("failed to fetch skin on first join", result.getErrorValue());
SkinRestorer.LOGGER.warn("failed to fetch skin on first join", result.getErrorValue());
}
}