Revert debug SoulPlay code change + replace Logger.info with verbose() call to prune the message if wanted

This commit is contained in:
Shadowrs
2018-08-16 00:52:09 +01:00
parent f81c861fe0
commit a3168fed0a
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -61,6 +61,6 @@ public class Core {
if (toPrint.contains("->")) {
org.parabot.core.Core.verbose(toPrint);
}
Logger.info("org.parabot.randoms.Core", "A total of "+randomCount+" randoms have been loaded for server: "+server);
org.parabot.core.Core.verbose("[org.parabot.randoms.Core] A total of "+randomCount+" randoms have been loaded for server: "+server);
}
}
@@ -1,6 +1,5 @@
package org.parabot.randoms.soulplay;
import org.parabot.api.output.Logger;
import org.parabot.core.reflect.RefClass;
import org.parabot.environment.randoms.Random;
import org.parabot.environment.randoms.RandomType;
@@ -16,8 +15,6 @@ public class RandomUUID implements Random {
private long number;
public RandomUUID() {
Logger.info("RandomUUID", Loader.getClient()+" is client class");
assert Loader.getClient() != null;
this.clientClass = new RefClass(Loader.getClient());
this.number = (long) Math.floor(Math.random() * 9000000000L) + 1000000000L;
}