Skip to content

Commit

Permalink
Add some debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaka committed Jan 14, 2024
1 parent 7c196cc commit a2c01b8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/kotlin/com/github/schaka/janitorr/TestController.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

0 comments on commit a2c01b8

Please sign in to comment.