Skip to content

Commit a6d99c0

Browse files
committed
Enhanced the experience.
1 parent 94bda89 commit a6d99c0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/org/mangorage/mangobotgithub/core/PasteRequestModule.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,15 +200,20 @@ public static void analyzeLog(Message message) {
200200
}
201201
}
202202

203+
System.out.println(builder);
204+
203205
if (!builder.isEmpty()) {;
204206
String id;
205207
if (PluginManager.isLoaded("mangobotsite")) {
208+
System.out.println("Uploaded to MangoBot Site");
206209
try {
207210
id = MangoBotSiteIntegration.handleLogResult(builder);
208211
if (id != null) {
209212
message.reply("[[Log Analyzer](https://mangobot.mangorage.org/file?id=%s)]".formatted(id)).setSuppressEmbeds(true).mentionRepliedUser(false).queue();
210213
}
211-
} catch (IOException ignored) {}
214+
} catch (IOException ignored) {
215+
ignored.printStackTrace();
216+
}
212217
}
213218
}
214219

0 commit comments

Comments
 (0)