diff --git a/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java b/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java index 955e35c11..6a2ace715 100644 --- a/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java +++ b/src/main/java/fr/xephi/authme/settings/properties/SecuritySettings.java @@ -30,6 +30,10 @@ public class SecuritySettings implements SettingsClass { public static final Property REMOVE_PASSWORD_FROM_CONSOLE = newProperty("Security.console.removePassword", true); + @Comment("Copy AuthMe log output in a separate file as well?") + public static final Property USE_LOGGING = + newProperty("Security.console.logConsole", true); + @Comment("Player need to put a captcha when he fails too lot the password") public static final Property USE_CAPTCHA = newProperty("Security.captcha.useCaptcha", false); diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index d2e0a9e74..0bc812029 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -305,6 +305,8 @@ Security: noConsoleSpam: false # Replace passwords in the console when player type a command like /login removePassword: true + # Copy AuthMe log output in a separate file as well? + logConsole: true captcha: # Player need to put a captcha when he fails too lot the password useCaptcha: false