We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d99c0 commit 61a191dCopy full SHA for 61a191d
1 file changed
src/main/java/org/mangorage/mangobotgithub/core/PasteRequestModule.java
@@ -194,16 +194,18 @@ public static void analyzeLog(Message message) {
194
for (String extractUrl : extractUrls(message.getContentRaw())) {
195
System.out.println(extractUrl);
196
var log = LinkExtractorList.LIST.fetch(extractUrl);
197
- System.out.println(log);
198
if (log != null) {
199
analyser.readLog(builder, log);
+ System.out.println("Read log");
200
}
201
202
203
System.out.println(builder);
204
205
+ builder.append("Testing the Analyzer");
206
+
207
if (!builder.isEmpty()) {;
- String id;
208
+ String id = null;
209
if (PluginManager.isLoaded("mangobotsite")) {
210
System.out.println("Uploaded to MangoBot Site");
211
try {
0 commit comments