Skip to content
Dev.to1 min read

I Benchmarked 3 Ways to Log in .NET : One...

Your API handles 2,000 requests per second. Each request logs 5 messages. That is 10,000 log calls per second — and if your log level is set to Warning, every single Debug and Information call is wasted work. The string gets built. The arguments get boxed. The GC collects the result. Nobody reads it. I ran the benchmarks. The difference is not subtle. Three ways to log the same thing Here is the same log statement written three ways. All three produce identical output when the level is enabled.
Read original on dev.to
0
0

Comment

Sign in to join the discussion.

Loading comments…

Related

Get the 10 best reads every Sunday

Curated by AI, voted by readers. Free forever.

Liked this? Start your own feed.

0
0