Skip to content

Commit

Permalink
SearchCompiler: tune logging
Browse files Browse the repository at this point in the history
git-svn-id: https://josm.openstreetmap.de/svn/trunk@17344 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
simon04 committed Nov 24, 2020
1 parent 4be5f60 commit 7e5c2d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2007,7 +2007,7 @@ public Match parse() throws SearchParseError {
Match m = Optional.ofNullable(parseExpression()).orElse(Always.INSTANCE);
if (!tokenizer.readIfEqual(Token.EOF))
throw new SearchParseError(tr("Unexpected token: {0}", tokenizer.nextToken()));
Logging.debug("Parsed search expression is {0}", m);
Logging.trace("Parsed search expression is {0}", m);
return m;
}

Expand Down

0 comments on commit 7e5c2d6

Please sign in to comment.