Skip to content

Commit

Permalink
Remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
haarli committed Jun 13, 2024
1 parent 5c360e0 commit 741d412
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private static SearchGroup parseGroup(String group, boolean addFulltext) throws
*/
private static SearchElement parsePair(String s, boolean not, boolean addFulltext) throws UnprocessableError {
if (new StringParser(METADATA_PATTERN).find(s)) {
LOGGER.info("Detected as Metadata " + s);
//LOGGER.info("Detected as Metadata " + s);
return parseMetadata(s, not);
} else if (new StringParser(COLLECTION_METADATA_PATTERN).find(s)) {
return parseCollectionMetadata(s, not);
Expand Down

0 comments on commit 741d412

Please sign in to comment.