mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-28 03:34:42 +02:00
Cleanup logging system
This commit is contained in:
@ -82,7 +82,7 @@ public class SquirrelIdUUIDService implements UUIDService {
|
||||
//
|
||||
if (uuids.size() >= 2) {
|
||||
if (Settings.DEBUG) {
|
||||
logger.info("[P2] (UUID) Found invalid UUID in batch. Will try each UUID individually.");
|
||||
logger.info("(UUID) Found invalid UUID in batch. Will try each UUID individually.");
|
||||
}
|
||||
for (final UUID uuid : uuids) {
|
||||
final List<UUIDMapping> result = this.getNames(Collections.singletonList(uuid));
|
||||
@ -92,7 +92,7 @@ public class SquirrelIdUUIDService implements UUIDService {
|
||||
results.add(result.get(0));
|
||||
}
|
||||
} else if (uuids.size() == 1 && Settings.DEBUG) {
|
||||
logger.info("[P2] (UUID) Found invalid UUID: {}", uuids.get(0));
|
||||
logger.info("(UUID) Found invalid UUID: {}", uuids.get(0));
|
||||
}
|
||||
}
|
||||
} catch (IOException | InterruptedException e) {
|
||||
|
Reference in New Issue
Block a user