Skip to content

Commit 9de17f8

Browse files
committed
remove console log
1 parent cf3c3b2 commit 9de17f8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/com/example/lyrics_api_v2/controller/LyricsController.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ public ResponseEntity<?> getLyrics(
2727
Lyrics lyrics = lyricsService.getLyrics(platform, title, artist);
2828
ApiVersion version = new ApiVersion();
2929

30-
System.out.println(lyrics);
31-
3230
if (lyrics == null) {
3331
LyricsNotFound error = new LyricsNotFound();
3432
return ResponseEntity.status(404).body(new ApiResponse<>(error, version));

0 commit comments

Comments
 (0)