revert logger

This commit is contained in:
DNx5 2015-09-15 23:37:33 +07:00
parent 1de2705840
commit cdfdc06312
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class AuthMe extends JavaPlugin {
private static AuthMe authme;
private final Server server = getServer();
private final Logger authmeLogger = getLogger();
private final Logger authmeLogger = Logger.getLogger("AuthMe");
public Management management;
public NewAPI api;
private Utils utils = Utils.getInstance();

View File

@ -41,7 +41,7 @@ public class PHPBB implements EncryptionMethod {
iteration_count_log2 = 8;
}
String output = "$H$";
output += itoa64.charAt(Math.min(iteration_count_log2 + 3, 30));
output += itoa64.charAt(Math.min(iteration_count_log2 + 3, 30)); // PHP_VERSION >= 5 ? 5 : 3
output += _hash_encode64(input, 6);
return output;
}