Fix logging warn->debug

This commit is contained in:
eikek 2022-06-11 12:40:16 +02:00
parent 0738bcf31b
commit 4d79badc2d
2 changed files with 14 additions and 1 deletions

View File

@ -34,4 +34,17 @@ class AuthTokenTest extends CatsEffectSuite {
!token2.copy(valid = Duration.minutes(10).some).validate(secret, Duration.millis(0))
)
}
test("signature") {
val token1 = AuthToken.user[IO](user, false, secret, None).unsafeRunSync()
val token2 =
AuthToken.user[IO](user, false, secret, Duration.seconds(10).some).unsafeRunSync()
assert(token1.sigValid(secret))
assert(token1.sigInvalid(otherSecret))
assert(token1.copy(valid = Duration.seconds(100).some).sigInvalid(secret))
assert(token2.sigValid(secret))
assert(token2.sigInvalid(otherSecret))
}
}

View File

@ -108,7 +108,7 @@ final class ItemSearchPart[F[_]: Async](
identity,
res =>
for {
_ <- logger.warn(s"Searching with query: $res")
_ <- logger.debug(s"Searching with query: $res")
items <- searchOps
.searchSelect(details, cfg.maxNoteLength, today.some, batch)(
res.q,