new LogServicePb.LogReadRequest();
requestPb.mergeFrom(requestBytes);
final LogServicePb.LogReadResponse responsePb =
new LogServicePb.LogReadResponse();
for (int i = 0; i < requestPb.getCount(); i++) {
RequestLog log = new RequestLog();
log
.setCombined("0.0.0.0 - loginUser [01/Dec/2011:00:00:00 -0000]"
+ " \"GET /path HTTP/1.1\" 200 100 \"http://google.com/\" \"Chrome\"");
log.setOffset(new LogOffset().setRequestId(String.valueOf(i)));
log.addLine(new LogLine()
.setLogMessage("\npath\nException:\"\nmessage\"\n\\"));
responsePb.addLog(log);
}
return new Future<byte[]>() {
@Override