/* */ try
/* */ {
/* 109 */ String logRecords = loadLogFile(this._in);
/* */
/* 111 */ while ((counter = logRecords.indexOf("[slf5s.start]", index)) != -1) {
/* 112 */ LogRecord temp = createLogRecord(logRecords.substring(index, counter));
/* 113 */ isLogFile = true;
/* */
/* 115 */ if (temp != null) {
/* 116 */ this._monitor.addMessage(temp);
/* */ }
/* */
/* 119 */ index = counter + "[slf5s.start]".length();
/* */ }
/* */
/* 122 */ if ((index < logRecords.length()) && (isLogFile)) {
/* 123 */ LogRecord temp = createLogRecord(logRecords.substring(index));
/* */
/* 125 */ if (temp != null) {
/* 126 */ this._monitor.addMessage(temp);
/* */ }
/* */ }