mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-01-26 17:41:31 +01:00
#473 Add logConsole setting
- Add missing logConsole setting - Set true as default value, as suggested by games647
This commit is contained in:
parent
ec87c662e1
commit
c626521dc8
@ -30,6 +30,10 @@ public class SecuritySettings implements SettingsClass {
|
|||||||
public static final Property<Boolean> REMOVE_PASSWORD_FROM_CONSOLE =
|
public static final Property<Boolean> REMOVE_PASSWORD_FROM_CONSOLE =
|
||||||
newProperty("Security.console.removePassword", true);
|
newProperty("Security.console.removePassword", true);
|
||||||
|
|
||||||
|
@Comment("Copy AuthMe log output in a separate file as well?")
|
||||||
|
public static final Property<Boolean> USE_LOGGING =
|
||||||
|
newProperty("Security.console.logConsole", true);
|
||||||
|
|
||||||
@Comment("Player need to put a captcha when he fails too lot the password")
|
@Comment("Player need to put a captcha when he fails too lot the password")
|
||||||
public static final Property<Boolean> USE_CAPTCHA =
|
public static final Property<Boolean> USE_CAPTCHA =
|
||||||
newProperty("Security.captcha.useCaptcha", false);
|
newProperty("Security.captcha.useCaptcha", false);
|
||||||
|
@ -305,6 +305,8 @@ Security:
|
|||||||
noConsoleSpam: false
|
noConsoleSpam: false
|
||||||
# Replace passwords in the console when player type a command like /login
|
# Replace passwords in the console when player type a command like /login
|
||||||
removePassword: true
|
removePassword: true
|
||||||
|
# Copy AuthMe log output in a separate file as well?
|
||||||
|
logConsole: true
|
||||||
captcha:
|
captcha:
|
||||||
# Player need to put a captcha when he fails too lot the password
|
# Player need to put a captcha when he fails too lot the password
|
||||||
useCaptcha: false
|
useCaptcha: false
|
||||||
|
Loading…
Reference in New Issue
Block a user