Skip to content

Commit 772d6cb

Browse files
committed
fix: 필요없는 sout문 삭제
1 parent d2afd25 commit 772d6cb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/cmf/commitField/domain/user/service/CustomOAuth2UserService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ public Optional<User> getUserByEmail(String email) {
123123

124124
public void setUserActive(String username) {
125125
String count = String.valueOf(userRepository.findByUsername(username).get().getCommitCount());
126-
System.out.println("setUserActive currentCommit:"+ count);
127126
redisTemplate.opsForValue().set("commit_active:" + username, count);
128127
redisTemplate.opsForValue().set("commit_lastCommitted:" + username, LocalDateTime.now().toString(),3, TimeUnit.HOURS);
129128

0 commit comments

Comments
 (0)