Skip to content

Commit

Permalink
Fix misalignment of types
Browse files Browse the repository at this point in the history
  • Loading branch information
morgen-peschke committed Jun 14, 2024
1 parent 230e82d commit b215b56
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ object PagingSelfAwareStructuredLogger {
private val pageSize = pageSizeK * 1024

private def pagedLogging(
logOpWithCtx: Map[String, String] => String => F[Unit],
logOpWithCtx: Map[String, String] => (=> String) => F[Unit],
ctx: Map[String, String],
logSplitId: String,
msg: String
Expand Down Expand Up @@ -148,7 +148,7 @@ object PagingSelfAwareStructuredLogger {

private def doLogging(
loggingLevelChk: => F[Boolean],
logOpWithCtx: Map[String, String] => String => F[Unit],
logOpWithCtx: Map[String, String] => (=> String) => F[Unit],
msg: => String,
ctx: Map[String, String] = Map()
): F[Unit] = {
Expand Down

0 comments on commit b215b56

Please sign in to comment.