summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java
diff options
context:
space:
mode:
Diffstat (limited to 'dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java')
-rw-r--r--dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java
index 5ef935d0..59692312 100644
--- a/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java
+++ b/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/maintenance/SendExpireWarning.java
@@ -57,7 +57,7 @@ public class SendExpireWarning implements Runnable {
@Override
public void run() {
- LOGGER.info("Scanning for expiring lectures and VMs to send mail reminders...");
+ // Start log message in methods below
checkImages();
checkLectures();
LOGGER.info("Done scanning for expired lectures/VMs");
@@ -71,7 +71,7 @@ public class SendExpireWarning implements Runnable {
LOGGER.warn("Could not get list of expiring lectures; skipping warning mails");
return;
}
- LOGGER.info("Scanning expiring lectures to send mails to users");
+ LOGGER.info("Scanning expiring lectures to send mails to users...");
final long now = Util.unixTime();
for (LectureSummary lecture : lectures) {
final int days = (int) ((lecture.endTime - now) / 86400);
@@ -95,7 +95,7 @@ public class SendExpireWarning implements Runnable {
LOGGER.warn("Could not determine expiring versions; skipping warning mails");
return;
}
- LOGGER.info("Scanning for expiring images to send mails to users");
+ LOGGER.info("Scanning for expiring images to send mails to users...");
// Send reminder on certain days
final long now = Util.unixTime();
for (LocalImageVersion version : versions) {