An extension for Visual Studio that lets you hide away obtrusive code like comments and logging, to let you focus on the actual flow of your application.
It would be really nice if there were an option (or this was just the default) of telling the parser to look for the logging identifiers anywhere in the line.
It works great when the line starts with the logging identifier, but if that identifier is part of a using block (to do scoped logging) like
using (logger.BeginScope(scopeObject.ToLoggingScope()))
{
}
It would be really nice if there were an option (or this was just the default) of telling the parser to look for the logging identifiers anywhere in the line.
It works great when the line starts with the logging identifier, but if that identifier is part of a using block (to do scoped logging) like
The
using
line doesn't get picked up.