Fix invalid trace event detail named "Type"

This commit is contained in:
A.J. Beamon 2020-05-07 11:22:32 -07:00
parent 90dbf33182
commit 47477382b1
1 changed files with 1 additions and 1 deletions

View File

@ -1053,7 +1053,7 @@ TraceEvent& TraceEvent::suppressFor( double duration, bool logSuppressedEventCou
}
}
else {
TraceEvent(SevWarnAlways, "SuppressionFromNonNetworkThread").detail("Type", type);
TraceEvent(SevWarnAlways, "SuppressionFromNonNetworkThread").detail("Event", type);
detail("__InvalidSuppression__", ""); // Choosing a detail name that is unlikely to collide with other names
}
}