1 instantiation of FrameworkEventSource
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
13public static readonly FrameworkEventSource Log = new FrameworkEventSource();
18 references to FrameworkEventSource
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
3898_ = FrameworkEventSource.Log;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
13public static readonly FrameworkEventSource Log = new FrameworkEventSource();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (10)
557if (!FrameworkEventSource.Log.IsEnabled()) 572_loggingEnabled = FrameworkEventSource.Log.IsEnabled(EventLevel.Verbose, FrameworkEventSource.Keywords.ThreadPool | FrameworkEventSource.Keywords.ThreadTransfer); 579if (_loggingEnabled && FrameworkEventSource.Log.IsEnabled()) 580FrameworkEventSource.Log.ThreadPoolEnqueueWorkObject(callback); 648if (_loggingEnabled && FrameworkEventSource.Log.IsEnabled()) 649FrameworkEventSource.Log.ThreadPoolEnqueueWorkObject(workItem); 938if (workQueue._loggingEnabled && FrameworkEventSource.Log.IsEnabled()) 940FrameworkEventSource.Log.ThreadPoolDequeueWorkObject(workItem);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (6)
553if (FrameworkEventSource.Log.IsEnabled(EventLevel.Informational, FrameworkEventSource.Keywords.ThreadTransfer)) 554FrameworkEventSource.Log.ThreadTransferSendObj(this, 1, string.Empty, true, (int)dueTime, (int)period); 707if (FrameworkEventSource.Log.IsEnabled(EventLevel.Informational, FrameworkEventSource.Keywords.ThreadTransfer)) 708FrameworkEventSource.Log.ThreadTransferReceiveObj(this, 1, string.Empty);