Skip to content

Commit 370683b

Browse files
committed
refactor: 불필요한 로그 삭제
1 parent 5cf9404 commit 370683b

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

src/main/java/everTale/everTale_be/domain/easterEgg/service/EasterEggVoiceService.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,6 @@ private boolean isInsideArea(EasterEggVoice voice, float clickX, float clickY) {
7777
float yTop = voice.getYCoordinate() + voice.getHeight();
7878
float yBottom = voice.getYCoordinate() - voice.getHeight();
7979

80-
log.info("x좌표: {}", clickX);
81-
log.info("y좌표: {}", clickY);
82-
log.info("왼쪽 x좌표: {}", xLeft);
83-
log.info("오른쪽 x좌표: {}", xRight);
84-
log.info("아래 y좌표: {}", yBottom);
85-
log.info("위 y좌표: {}", yTop);
86-
boolean isThere = clickX >= xLeft && clickX <= xRight && clickY <= yTop && clickY >= yBottom;
87-
log.info("isThere: {}", isThere);
8880
return clickX >= xLeft && clickX <= xRight && clickY <= yTop && clickY >= yBottom;
8981
}
9082

0 commit comments

Comments
 (0)