1 instantiation of FrameworkEventSource
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
13
public 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)
3895
_ =
FrameworkEventSource
.Log;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\FrameworkEventSource.cs (1)
13
public static readonly
FrameworkEventSource
Log = new FrameworkEventSource();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\ThreadPoolWorkQueue.cs (10)
592
if (!
FrameworkEventSource
.Log.IsEnabled())
607
_loggingEnabled =
FrameworkEventSource
.Log.IsEnabled(EventLevel.Verbose,
FrameworkEventSource
.Keywords.ThreadPool |
FrameworkEventSource
.Keywords.ThreadTransfer);
614
if (_loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
615
FrameworkEventSource
.Log.ThreadPoolEnqueueWorkObject(callback);
683
if (_loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
684
FrameworkEventSource
.Log.ThreadPoolEnqueueWorkObject(workItem);
984
if (workQueue._loggingEnabled &&
FrameworkEventSource
.Log.IsEnabled())
986
FrameworkEventSource
.Log.ThreadPoolDequeueWorkObject(workItem);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (6)
553
if (
FrameworkEventSource
.Log.IsEnabled(EventLevel.Informational,
FrameworkEventSource
.Keywords.ThreadTransfer))
554
FrameworkEventSource
.Log.ThreadTransferSendObj(this, 1, string.Empty, true, (int)dueTime, (int)period);
707
if (
FrameworkEventSource
.Log.IsEnabled(EventLevel.Informational,
FrameworkEventSource
.Keywords.ThreadTransfer))
708
FrameworkEventSource
.Log.ThreadTransferReceiveObj(this, 1, string.Empty);