File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/main/java/ru/mystamps/web/service Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments