sigmoid.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A social space for people researching, working with, or just interested in AI!

Server stats:

577
active users

#aspnet

3 posts3 participants0 posts today

A Mistake I Made with ASP.NET Core Middleware

I once added some logging middleware… at the wrong place in the pipeline.

Result? I missed all the early failures.

Lesson: Order matters in ASP.NET Core middleware.

Put logging and error handling before your app-specific stuff.

Learned that one the hard way.