Skip to content

Commit

Permalink
Merge pull request #60 from SwissDataScienceCenter/redis-logging
Browse files Browse the repository at this point in the history
Lower level of redis logging
  • Loading branch information
eikek authored Mar 15, 2024
2 parents 7d34c4e + 00d579d commit 0c2eb52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import scribe.Scribe
class RedisLogger[F[_]](scribe: Scribe[F]) extends Log[F]:

override def debug(msg: => String): F[Unit] =
scribe.debug(msg)
scribe.trace(msg)

override def info(msg: => String): F[Unit] =
scribe.info(msg)
scribe.debug(msg)

override def error(msg: => String): F[Unit] =
scribe.error(msg)
Expand Down

0 comments on commit 0c2eb52

Please sign in to comment.