Skip to content

Commit 7190b95

Browse files
committed
Disabled update checker log spam...
1 parent 080f23d commit 7190b95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commander/java/com/mcmoddev/mmdbot/commander/updatenotifiers/UpdateNotifier.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public final void run() {
126126
pickedUpFromDB = true;
127127
}
128128

129-
LOGGER.debug(loggingMarker, "Checking for new versions...");
129+
//LOGGER.debug(loggingMarker, "Checking for new versions...");
130130
final T old = latest;
131131
T newVersion = null;
132132
try {
@@ -136,7 +136,7 @@ public final void run() {
136136
}
137137

138138
if (newVersion != null && (old == null || configuration.versionComparator.compare(old, newVersion) < 0)) {
139-
LOGGER.info(loggingMarker, "New release found, from {} to {}", old, newVersion);
139+
//LOGGER.info(loggingMarker, "New release found, from {} to {}", old, newVersion);
140140
update(newVersion);
141141

142142
final var embed = getEmbed(old, latest);
@@ -163,7 +163,7 @@ public final void run() {
163163
}
164164
});
165165
} else {
166-
LOGGER.debug(loggingMarker, "No new version found");
166+
//LOGGER.debug(loggingMarker, "No new version found");
167167
}
168168
}
169169

0 commit comments

Comments
 (0)