ConnectOptions connectOptions = ConnectionOptionsManager
.getOptions(readApplication.getAppId());
if (connectOptions == null) {
return Status.CANCEL_STATUS;
}
AppAdmin createAppAdmin2 = new AppAdminFactory().createAppAdmin(
connectOptions, readApplication, new PrintWriter(System.err));
try {
Reader requestLogs = createAppAdmin2.requestLogs(count, severity);
BufferedReader bufferedReader = new BufferedReader(requestLogs);
while (true) {
try {
String str = bufferedReader.readLine();