You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ITraceWriter is designed to not incur a performance cost for categories and levels where tracing is disabled. Specifically, traceAction should only be called if tracing is enabled. Accordingly, NlogTraceWriter.Trace should first check whether NLog is tracing at a given level, and only call traceAction if it is. This would provide a major performance improvement.