typelevel / log4cats

Logging Tools For Interaction with cats-effect
https://typelevel.org/log4cats/
Apache License 2.0
400 stars 73 forks source link

Minor cleanup in PagingSelfAwareStructuredLogger #849

Closed morgen-peschke closed 2 months ago

morgen-peschke commented 2 months ago

Materialize the paged message before interacting with it.

Previously the message would be materialized multiple times:

Materializing early gives these improvements:

Removes some by-name parameters that were always called with materialized values.

Simplifies unneeded calls to Show on Int or String values, which doesn't have any particular benefit, particularly if it's inside of a string interpolation anyway.