Examples for SLAB tend to look like this:
MyCompanyEventSource.Log.ScalingRequestSubmitted(
request.RoleName,
request.InstanceCount,
context.RuleName,
context.CurrentInstanceCount);
I don't like that I have to edit MyCompanyEventSource
every time I add a new event type. I also don't like that the logger is only available staticly. I'd rather have something like this:
_logger.Log(new ScalingRequestSubmittedEvent(request, context));
I know I can just roll my own logging, but before I dismiss SLAB entirely, I'd like to know if I'm being unfair.