Skip to content
This repository has been archived by the owner on Jun 2, 2019. It is now read-only.

Commit

Permalink
indexer: add log
Browse files Browse the repository at this point in the history
  • Loading branch information
T4ze committed Dec 9, 2017
1 parent bf7a290 commit e24899e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public class IndexerService implements Indexer {

@Override
public Document index(final String text, final String url) {
LOGGER.info("Indexing {}", url);
final String[] tokensArray = Arrays.stream(getSentences(text))
.map(this::getWords)
.flatMap(Function.identity())
Expand Down

0 comments on commit e24899e

Please sign in to comment.