Skip to content

Commit

Permalink
Fixed issue #68 adding the parsed lines in the log
Browse files Browse the repository at this point in the history
  • Loading branch information
baubakg committed Oct 3, 2023
1 parent b3cf570 commit 9eb4c2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Below is a diagram representing the class structure:

![The Class relationship](diagrams/Log_Parser-Classes.png)

## Searching a organizing log data
## Searching and organizing log data
As of versions 1.0.4 & 1.0.5 we have a series of search and organizing the log data.

### Search and Filter Mechanisms
Expand Down Expand Up @@ -231,6 +231,7 @@ AssertLogData.assertLogContains(List<String> in_filePathList, ParseDefinition in
## Release Notes
### 1.0.9
- [#67](https://github.com/adobe/log-parser/issues/67) We can now select the files using a wild card. Given a directory we can now look for files in the sub-directory given a wild-card. The wildcards are implemented using Adobe Commons IO. Youcan read more on this in the [WildcardFilter JavaDoc](https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/filefilter/WildcardFilter.html)
- [#68](https://github.com/adobe/log-parser/issues/68) We now present a report of the findings at the end of the analysis.

### 1.0.8.2
- Building with java8.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public static <T extends StdLogEntry, V extends Collection<String>> Map<String,
i++;
l_foundEntries.put(l_currentLogFile, lt_foundEntryCount);
}
log.info("Finished scanning {} lines.",i);
} catch (FileNotFoundException e) {
log.error("The given file {} could not be found.", l_currentLogFile);
}
Expand Down

0 comments on commit 9eb4c2a

Please sign in to comment.