We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94bda89 commit a6d99c0Copy full SHA for a6d99c0
1 file changed
src/main/java/org/mangorage/mangobotgithub/core/PasteRequestModule.java
@@ -200,15 +200,20 @@ public static void analyzeLog(Message message) {
200
}
201
202
203
+ System.out.println(builder);
204
+
205
if (!builder.isEmpty()) {;
206
String id;
207
if (PluginManager.isLoaded("mangobotsite")) {
208
+ System.out.println("Uploaded to MangoBot Site");
209
try {
210
id = MangoBotSiteIntegration.handleLogResult(builder);
211
if (id != null) {
212
message.reply("[[Log Analyzer](https://mangobot.mangorage.org/file?id=%s)]".formatted(id)).setSuppressEmbeds(true).mentionRepliedUser(false).queue();
213
- } catch (IOException ignored) {}
214
+ } catch (IOException ignored) {
215
+ ignored.printStackTrace();
216
+ }
217
218
219
0 commit comments