Skip to content

Commit edeff10

Browse files
committed
chore: log extracted currency when it's found by locator.
Should be in a5ba1b6 commit.
1 parent 4a9e9a4 commit edeff10

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/ru/mystamps/web/feature/series/importing/extractor/JsoupSiteParser.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ protected String extractCurrency(Element body) {
224224
if (currencyLocator != null) {
225225
String currency = getTextOfTheFirstElement(body, currencyLocator);
226226
if (currency != null) {
227+
LOG.debug("Extracted currency: '{}'", currency);
227228
return currency;
228229
}
229230
}

0 commit comments

Comments
 (0)