File tree 1 file changed +3
-3
lines changed
src/main/java/ru/mystamps/web/service
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ public String suggestCountryForUser(Integer userId) {
202
202
// if user created a series with a country, let's suggest this country to him
203
203
String slug = countryDao .findCountryOfLastCreatedSeriesByUser (userId );
204
204
if (slug != null ) {
205
- log .info (
205
+ log .debug (
206
206
"Country {} has been suggested to user #{} from a recently created series" ,
207
207
slug ,
208
208
userId
@@ -213,7 +213,7 @@ public String suggestCountryForUser(Integer userId) {
213
213
// if user created a country, let's suggest this country to him
214
214
slug = countryDao .findLastCountryCreatedByUser (userId );
215
215
if (slug != null ) {
216
- log .info (
216
+ log .debug (
217
217
"Country {} has been suggested to user #{} as it was created by him recently" ,
218
218
slug ,
219
219
userId
@@ -225,7 +225,7 @@ public String suggestCountryForUser(Integer userId) {
225
225
// belong to a specific country, let's suggest this country to him
226
226
slug = countryDao .findPopularCountryInCollection (userId );
227
227
if (slug != null ) {
228
- log .info (
228
+ log .debug (
229
229
"Country {} has been suggested to user #{} as popular in his collection" ,
230
230
slug ,
231
231
userId
You can’t perform that action at this time.
0 commit comments