Skip to content

Commit 8c940d3

Browse files
committed
CountryService.suggestCountryForUser(): increase log level.
No functional changes.
1 parent 05dd158 commit 8c940d3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ public List<Object[]> getStatisticsOf(Integer collectionId, String lang) {
166166

167167
/**
168168
* @author Shkarin John
169+
* @author Slava Semushin
169170
*/
170171
@Override
171172
@Transactional(readOnly = true)
@@ -175,7 +176,7 @@ public String suggestCountryForUser(Integer userId) {
175176

176177
String slug = countryDao.findLastCreatedByUser(userId);
177178
if (slug != null) {
178-
LOG.debug(
179+
LOG.info(
179180
"Country {} has been suggested to user #{} as a recently created",
180181
slug,
181182
userId
@@ -184,7 +185,7 @@ public String suggestCountryForUser(Integer userId) {
184185
}
185186

186187
slug = countryDao.findPopularCountryInCollection(userId);
187-
LOG.debug(
188+
LOG.info(
188189
"Country {} has been suggested to user #{} as popular in his collection",
189190
slug,
190191
userId

0 commit comments

Comments
 (0)