Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 0f3e829

Browse files
benaadamsstephentoub
authored andcommitted
Use Guid ctor for TplEtwProvider (#16060)
1 parent 0be8947 commit 0f3e829

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mscorlib/src/System/Threading/Tasks/TPLETWProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected override void OnEventCommand(EventCommandEventArgs command)
5959
public static readonly TplEtwProvider Log = new TplEtwProvider();
6060

6161
/// <summary>Prevent external instantiation. All logging should go through the Log instance.</summary>
62-
private TplEtwProvider() { }
62+
private TplEtwProvider() : base(new Guid(0x2e5dba47, 0xa3d2, 0x4d16, 0x8e, 0xe0, 0x66, 0x71, 0xff, 0xdc, 0xd7, 0xb5), "System.Threading.Tasks.TplEventSource") { }
6363

6464
/// <summary>Configured behavior of a task wait operation.</summary>
6565
public enum TaskWaitBehavior : int

0 commit comments

Comments
 (0)