mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 11:45:19 +01:00
Escalate null entries in the db to the warn level
This commit is contained in:
parent
c8c946cc10
commit
25a69f4ca0
@ -1935,7 +1935,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_rating` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_rating` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
@ -1963,7 +1963,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_helpers` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_helpers` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
@ -1990,7 +1990,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_trusted` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_trusted` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
@ -2017,7 +2017,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_denied` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_denied` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
@ -2058,7 +2058,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_flags` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_flags` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
@ -2113,7 +2113,7 @@ public class SQLManager implements AbstractDB {
|
||||
} else if (Settings.Enabled_Components.DATABASE_PURGER) {
|
||||
toDelete.add(id);
|
||||
} else {
|
||||
LOGGER.info("Entry #{}({}) in `plot_settings` does not exist."
|
||||
LOGGER.warn("Entry #{}({}) in `plot_settings` does not exist."
|
||||
+ " Create this plot or set `database-purger: true` in settings.yml", id, plot);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user