diff --git a/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TplEventSource.cs b/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TplEventSource.cs index ea85eab23cfee..f1f12a5c0be25 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TplEventSource.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TplEventSource.cs @@ -364,7 +364,7 @@ public void TaskWaitEnd( public void TaskWaitContinuationComplete(int TaskID) { // Log an event if indicated. - if (IsEnabled() && IsEnabled(EventLevel.Verbose, Keywords.Tasks)) + if (IsEnabled() && IsEnabled(EventLevel.Verbose, Keywords.TaskStops)) WriteEvent(TASKWAITCONTINUATIONCOMPLETE_ID, TaskID); } @@ -373,7 +373,7 @@ public void TaskWaitContinuationComplete(int TaskID) /// /// The task ID. [Event(TASKWAITCONTINUATIONSTARTED_ID, - Level = EventLevel.Verbose, Keywords = Keywords.TaskStops)] + Level = EventLevel.Verbose, Keywords = Keywords.Tasks)] public void TaskWaitContinuationStarted(int TaskID) { // Log an event if indicated.