mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-02-04 14:01:29 +01:00
revert logger
This commit is contained in:
parent
1de2705840
commit
cdfdc06312
@ -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();
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user