Skip to content

Commit

Permalink
fix for config not correctly printing (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
nylonee committed Jan 26, 2024
1 parent 0bc5d12 commit fc9af6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/scala/configuration/ConfigurationUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ object ConfigurationUtils {
)
)

logger.info(s"Configuration read by Watchlistarr: $config")
config
config.map { c =>
logger.info(s"Configuration read by Watchlistarr: $c")
c
}
}

private def getSonarrConfig(configReader: ConfigurationReader, client: HttpClient): IO[(Uri, String, Int, String, Int)] = {
Expand Down

0 comments on commit fc9af6c

Please sign in to comment.