From a2c01b85096c4890a7e13df7aeccef9f0a1da914 Mon Sep 17 00:00:00 2001 From: Schaka <2223171+Schaka@users.noreply.github.com> Date: Sun, 14 Jan 2024 21:19:06 +0100 Subject: [PATCH] Add some debugging output --- .../com/github/schaka/janitorr/TestController.kt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/github/schaka/janitorr/TestController.kt b/src/main/kotlin/com/github/schaka/janitorr/TestController.kt index 0fc4f42..839b213 100644 --- a/src/main/kotlin/com/github/schaka/janitorr/TestController.kt +++ b/src/main/kotlin/com/github/schaka/janitorr/TestController.kt @@ -47,6 +47,14 @@ class TestController( jellyseerrService.cleanupRequests(toDeleteMovies) jellyfinService.cleanupMovies(toDeleteMovies) - return ResponseEntity(sonarrShows, HttpStatus.OK) + + + return ResponseEntity( + mapOf( + "properties" to applicationProperties, + "shows" to toDeleteShows, + "movies" to toDeleteMovies + ) + , HttpStatus.OK) } } \ No newline at end of file