Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified log4j-detector-2021.12.20.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion src/main/java/com/mergebase/log4j/Log4JDetector.java
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,8 @@ private static String prepareOutput(String zipPath, StringBuilder buf) {
msg = msg.substring(0, x).trim();
}
Map<String, String> m = new LinkedHashMap<String, String>();
m.put(status, zipPath);
m.put("status", status);
m.put("path", zipPath);
m.put("info", msg);
return Java2Json.format(m) + ",";
} else {
Expand Down