Skip to content

Commit a5edb40

Browse files
committed
remarks
1 parent bbc9bf6 commit a5edb40

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/main/java/ru/mystamps/web/service/CountryServiceImpl.java

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,20 @@ public String suggestCountryForUser(Integer userId) {
175175

176176
String slug = countryDao.findLastCreatedByUser(userId);
177177
if (slug != null) {
178-
LOG.debug("Country {} has been suggested to user #{} as a recently created", slug, userId);
178+
LOG.debug(
179+
"Country {} has been suggested to user #{} as a recently created",
180+
slug,
181+
userId
182+
);
179183
return slug;
180184
}
181185

182186
slug = countryDao.findPopularCountryInCollection(userId);
183-
LOG.debug("Country {} has been suggested to user #{} as popular in his collection", slug, userId);
187+
LOG.debug(
188+
"Country {} has been suggested to user #{} as popular in his collection",
189+
slug,
190+
userId
191+
);
184192

185193
return slug;
186194
}

0 commit comments

Comments
 (0)