mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-09 12:10:56 +01:00
Don't print warning messages if backup on start/stop is disabled.
This commit is contained in:
parent
0b4ddce3c4
commit
a101ce915b
@ -38,9 +38,16 @@ public class PerformBackup {
|
||||
* @param cause BackupCause The cause of the backup.
|
||||
*/
|
||||
public void doBackup(BackupCause cause) {
|
||||
|
||||
// Do nothing if backup is disabled
|
||||
if (!Settings.isBackupActivated) {
|
||||
// Print a warning if the backup was requested via command or by another plugin
|
||||
if (cause == BackupCause.COMMAND || cause == BackupCause.OTHER) {
|
||||
ConsoleLogger.showError("Can't perform a Backup: disabled in configuration. Cause of the Backup: " + cause.name());
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// Check whether a backup should be made at the specified point in time
|
||||
switch (cause) {
|
||||
case START:
|
||||
|
Loading…
Reference in New Issue
Block a user