Skip to content

Commit c598775

Browse files
committed
CountryServiceImpl.suggestCountryForUser(): change logging level to DEBUG.
No functional changes.
1 parent 2ccba86 commit c598775

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public String suggestCountryForUser(Integer userId) {
202202
// if user created a series with a country, let's suggest this country to him
203203
String slug = countryDao.findCountryOfLastCreatedSeriesByUser(userId);
204204
if (slug != null) {
205-
log.info(
205+
log.debug(
206206
"Country {} has been suggested to user #{} from a recently created series",
207207
slug,
208208
userId
@@ -213,7 +213,7 @@ public String suggestCountryForUser(Integer userId) {
213213
// if user created a country, let's suggest this country to him
214214
slug = countryDao.findLastCountryCreatedByUser(userId);
215215
if (slug != null) {
216-
log.info(
216+
log.debug(
217217
"Country {} has been suggested to user #{} as it was created by him recently",
218218
slug,
219219
userId
@@ -225,7 +225,7 @@ public String suggestCountryForUser(Integer userId) {
225225
// belong to a specific country, let's suggest this country to him
226226
slug = countryDao.findPopularCountryInCollection(userId);
227227
if (slug != null) {
228-
log.info(
228+
log.debug(
229229
"Country {} has been suggested to user #{} as popular in his collection",
230230
slug,
231231
userId

0 commit comments

Comments
 (0)