kinesis4cats.smithy4s.client.middleware.RequestResponseLogger.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesis4cats-smithy4s-client_2.13 Show documentation
Show all versions of kinesis4cats-smithy4s-client_2.13 Show documentation
Cats tooling for the Smithy4s Kinesis Client
The newest version!
/*
* Copyright 2023-2023 etspaceman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kinesis4cats.smithy4s.client.middleware
import cats.effect.Async
import org.http4s.client.Client
import org.typelevel.log4cats.StructuredLogger
import kinesis4cats.smithy4s.client.KinesisClient
/** Combines
* [[kinesis4cats.smithy4s.client.middleware.RequestLogger RequestLogger]] and
* [[kinesis4cats.smithy4s.client.middleware.ResponseLogger ResponseLogger]]
* middleware
*/
object RequestResponseLogger {
/** Apply
* [[kinesis4cats.smithy4s.client.middleware.RequestResponseLogger RequestResponseLogger]]
* middleware to a [[https://http4s.org/v0.23/docs/client.html Client]]
*
* @param logger
* [[org.typelevel.log4cats.StructuredLogger StructuredLogger]]
* @param client
* [[https://http4s.org/v0.23/docs/client.html Client]]
* @param F
* [[cats.effect.Async Async]]
* @param encoders
* [[kinesis4cats.smithy4s.client.KinesisClient.LogEncoders KinesisClient.LogEncoders]]
* @return
* [[https://http4s.org/v0.23/docs/client.html Client]] that logs its
* requests in debug and trace levels
*/
def apply[F[_]](
logger: StructuredLogger[F],
encoders: KinesisClient.LogEncoders[F] = KinesisClient.LogEncoders.show[F]
)(client: Client[F])(implicit
F: Async[F]
): Client[F] =
ResponseLogger(logger, encoders)(RequestLogger(logger, encoders)(client))
}