🔨 Disable stats check on startup

This commit is contained in:
SebClem 2020-11-23 15:00:35 +01:00
parent 266801bc5d
commit ff19cd7eea

View File

@ -112,11 +112,11 @@ public class Init {
List<UserEntity> users = (List<UserEntity>) userRepository.findAll(); List<UserEntity> users = (List<UserEntity>) userRepository.findAll();
UserStatsUtils userStatsUtils = UserStatsUtils.getINSTANCE(); UserStatsUtils userStatsUtils = UserStatsUtils.getINSTANCE();
logger.debug("Stats..."); logger.debug("Stats...");
for (UserEntity userEntity : users) { // for (UserEntity userEntity : users) {
logger.debug("..." + userEntity.getName()); // logger.debug("..." + userEntity.getName());
userStatsUtils.getUserStats(userEntity); // userStatsUtils.getUserStats(userEntity);
//
} // }
} }