Skip to content

Commit

Permalink
fix: log level from ERROR to INFO when invalidate caches
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Aug 10, 2022
1 parent c9ac267 commit 4af9539
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CacheService(
def invalidateAll(): IO[Unit] = {
sitemapService.invalidate()
contentTypeService.invalidate()
IO(logger.error(s"All caches are invalidated."))
IO(logger.info(s"All caches are invalidated."))
}

}

0 comments on commit 4af9539

Please sign in to comment.