Update toString()

This commit is contained in:
Fuzzlemann 2017-08-21 21:39:46 +02:00
parent 424ee0dffc
commit 685bac0c57

View File

@ -137,6 +137,14 @@ public class TPS {
@Override
public String toString() {
return "TPS{" + date + "|" + ticksPerSecond + "|" + players + "|" + cpuUsage + "}";
return "TPS{" +
"date=" + date +
", ticksPerSecond=" + ticksPerSecond +
", players=" + players +
", cpuUsage=" + cpuUsage +
", usedMemory=" + usedMemory +
", entityCount=" + entityCount +
", chunksLoaded=" + chunksLoaded +
'}';
}
}