From df8d3ee404c154104201cf9a7a32f6165e94962b Mon Sep 17 00:00:00 2001 From: Elena Date: Fri, 22 May 2026 15:07:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BB=D0=BE=D0=B3=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../movienight/application/services/FilmLibraryService.kt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/project/movienight/application/services/FilmLibraryService.kt b/src/main/kotlin/com/project/movienight/application/services/FilmLibraryService.kt index b7f24dd..bdc184e 100644 --- a/src/main/kotlin/com/project/movienight/application/services/FilmLibraryService.kt +++ b/src/main/kotlin/com/project/movienight/application/services/FilmLibraryService.kt @@ -62,7 +62,9 @@ class FilmLibraryService( ) ) businessMetricsService.recordLibraryEvent() - log.info("Film re-added to library: userId={}, filmId={}, entryId={}", command.userId, command.filmId, saved.id) + log.info( + "Film re-added to library: userId={}, filmId={}, entryId={}", + command.userId, command.filmId, saved.id) return saved } @@ -101,7 +103,9 @@ class FilmLibraryService( filmLibraryRepository.deleteById(existingLibrary.id) businessMetricsService.recordLibraryEvent() - log.info("Film removed from library: userId={}, filmId={}, entryId={}", command.userId, command.filmId, existingLibrary.id) + log.info( + "Film removed from library: userId={}, filmId={}, entryId={}", + command.userId, command.filmId, existingLibrary.id) return existingLibrary }