8191615: LogCompilation can show bytes

Print the bytes size of a method as it is now contained in the log

Reviewed-by: kvn, vlivanov
This commit is contained in:
Eric Caspole 2017-11-21 16:27:01 -05:00
parent e7ff0665e4
commit b18720e411

@ -898,7 +898,7 @@ public class LogParser extends DefaultHandler implements ErrorHandler {
m.setName(parts[1]);
m.setSignature(parts[2]);
m.setFlags("0");
m.setBytes("unknown");
m.setBytes(search(atts, "bytes", "unknown"));
compile.setMethod(m);
events.add(compile);
compiles.put(id, compile);