From fa1e86a46b535b4ff89e44ab141d84a457cc4364 Mon Sep 17 00:00:00 2001 From: kennycud Date: Wed, 23 Oct 2024 17:37:49 -0700 Subject: [PATCH] added more descriptive labelling to the logging --- .../java/org/qortal/controller/repository/AtStatesPruner.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/qortal/controller/repository/AtStatesPruner.java b/src/main/java/org/qortal/controller/repository/AtStatesPruner.java index 19923d68..c9e77dcf 100644 --- a/src/main/java/org/qortal/controller/repository/AtStatesPruner.java +++ b/src/main/java/org/qortal/controller/repository/AtStatesPruner.java @@ -109,11 +109,11 @@ public class AtStatesPruner implements Runnable { } } } catch (Exception e) { - LOGGER.warn("Pruning stopped working. Trying again. Report this error immediately to the developers.", e); + LOGGER.warn("AT States Pruning stopped working. Trying again. Report this error immediately to the developers.", e); } } } catch (Exception e) { - LOGGER.error("Pruning is not working! Not trying again. Restart ASAP. Report this error immediately to the developers.", e); + LOGGER.error("AT States Pruning is not working! Not trying again. Restart ASAP. Report this error immediately to the developers.", e); } }