Don't print warning messages if backup on start/stop is disabled.

This commit is contained in:
Gabriele C 2016-01-29 20:22:15 +01:00
parent 0b4ddce3c4
commit a101ce915b

View File

@ -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: