Change some log levels of item processing task

This commit is contained in:
Eike Kettner 2020-05-24 12:54:35 +02:00
parent 938866fb84
commit 4e49c78e72
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ object ConvertPdf {
Conversion.create[F](cfg, sanitizeHtml, ctx.blocker, ctx.logger).use { conv =>
mime match {
case mt if mt.baseEqual(Mimetype.`application/pdf`) =>
ctx.logger.info("Not going to convert a PDF file into a PDF.") *>
ctx.logger.debug(s"Not going to convert a PDF file ${ra.name} into a PDF.") *>
(ra, None: Option[RAttachmentMeta]).pure[F]
case _ =>

View File

@ -60,7 +60,7 @@ object TextExtraction {
rm => rm.setContentIfEmpty(txt.map(_.trim).filter(_.nonEmpty))
)
est <- dst
_ <- ctx.logger.debug(
_ <- ctx.logger.info(
s"Extracting text for attachment ${stripAttachmentName(ra)} finished in ${est.formatExact}"
)
} yield meta