1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-09 16:17:37 +02:00

Debug logging on Name to UUID lookup.

This commit is contained in:
ElgarL
2014-07-19 02:21:34 +01:00
parent d3be04c81a
commit cdd5df0c0a

View File

@@ -137,6 +137,10 @@ public class WorldDataHolder {
}
if (!nameToUUIDLookup.containsKey(userId)) {
GroupManager.logger.fine("ERROR: No lookup for: " + userId);
}
// No user account found so create a new one.
User newUser = createUser(userId);
return newUser;