mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-08 03:29:41 +01:00
Remove the debug code as the source for random-logouts is found
This commit is contained in:
parent
469e8d3a48
commit
837bbd69ac
@ -11,7 +11,6 @@ import java.io.IOException;
|
|||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.logging.Level;
|
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -67,19 +66,6 @@ public final class ConsoleLogger {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void debug(String message) {
|
|
||||||
if (enableDebug) {
|
|
||||||
//creating and filling an exception is a expensive call
|
|
||||||
//TODO #419 20160601: ->so it should be removed as soon #419 is fixed
|
|
||||||
//logger.isLoggable does not work because the plugin logger is always ALL
|
|
||||||
logger.log(Level.FINE, message + ' ' + Thread.currentThread().getName(), new Exception());
|
|
||||||
|
|
||||||
if (useLogging) {
|
|
||||||
writeLog("Debug: " + Thread.currentThread().getName() + ':' + message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Print an error message.
|
* Print an error message.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package fr.xephi.authme.cache.auth;
|
package fr.xephi.authme.cache.auth;
|
||||||
|
|
||||||
import fr.xephi.authme.ConsoleLogger;
|
|
||||||
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
@ -34,7 +33,6 @@ public class PlayerCache {
|
|||||||
* @param auth PlayerAuth
|
* @param auth PlayerAuth
|
||||||
*/
|
*/
|
||||||
public void addPlayer(PlayerAuth auth) {
|
public void addPlayer(PlayerAuth auth) {
|
||||||
ConsoleLogger.debug("ADDED PLAYER TO CACHE " + auth.getNickname());
|
|
||||||
cache.put(auth.getNickname().toLowerCase(), auth);
|
cache.put(auth.getNickname().toLowerCase(), auth);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,7 +42,6 @@ public class PlayerCache {
|
|||||||
* @param auth PlayerAuth
|
* @param auth PlayerAuth
|
||||||
*/
|
*/
|
||||||
public void updatePlayer(PlayerAuth auth) {
|
public void updatePlayer(PlayerAuth auth) {
|
||||||
ConsoleLogger.debug("UPDATE PLAYER " + auth.getNickname());
|
|
||||||
cache.put(auth.getNickname(), auth);
|
cache.put(auth.getNickname(), auth);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,7 +51,6 @@ public class PlayerCache {
|
|||||||
* @param user String
|
* @param user String
|
||||||
*/
|
*/
|
||||||
public void removePlayer(String user) {
|
public void removePlayer(String user) {
|
||||||
ConsoleLogger.debug("REMOVE PLAYER " + user);
|
|
||||||
cache.remove(user.toLowerCase());
|
cache.remove(user.toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +54,6 @@ public class CacheDataSource implements DataSource {
|
|||||||
return executorService.submit(new Callable<Optional<PlayerAuth>>() {
|
return executorService.submit(new Callable<Optional<PlayerAuth>>() {
|
||||||
@Override
|
@Override
|
||||||
public Optional<PlayerAuth> call() {
|
public Optional<PlayerAuth> call() {
|
||||||
ConsoleLogger.debug("REFRESH " + key);
|
|
||||||
return load(key);
|
return load(key);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user