}
List<Collection<String>> logs = new ArrayList<Collection<String>>();
for (String entry : store.getChildren(RootTable.ZROOT_TABLET_WALOGS)) {
byte[] logInfo = store.get(RootTable.ZROOT_TABLET_WALOGS + "/" + entry);
if (logInfo != null) {
LogEntry logEntry = new LogEntry();
logEntry.fromBytes(logInfo);
logs.add(logEntry.logSet);
log.debug("root tablet logSet " + logEntry.logSet);
}
}
TabletLocationState result = new TabletLocationState(RootTable.EXTENT, futureSession, currentSession, lastSession, logs, false);