Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert OpenTelemetryApiEventSource naming fix
  • Loading branch information
Illia-M committed May 23, 2020
commit 6e116c1699f0eb2a4630d4e9276477aa898ee044
6 changes: 3 additions & 3 deletions src/OpenTelemetry.Api/Internal/OpenTelemetryApiEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void SpanContextExtractException(Exception ex)
}

[NonEvent]
public void TraceStateExtractException(Exception ex)
public void TracestateExtractException(Exception ex)
{
if (this.IsEnabled(EventLevel.Warning, (EventKeywords)(-1)))
{
Expand All @@ -48,7 +48,7 @@ public void TraceStateExtractException(Exception ex)
}

[NonEvent]
public void TraceStateKeyIsInvalid(ReadOnlySpan<char> key)
public void TracestateKeyIsInvalid(ReadOnlySpan<char> key)
{
if (this.IsEnabled(EventLevel.Warning, (EventKeywords)(-1)))
{
Expand All @@ -57,7 +57,7 @@ public void TraceStateKeyIsInvalid(ReadOnlySpan<char> key)
}

[NonEvent]
public void TraceStateValueIsInvalid(ReadOnlySpan<char> value)
public void TracestateValueIsInvalid(ReadOnlySpan<char> value)
{
if (this.IsEnabled(EventLevel.Warning, (EventKeywords)(-1)))
{
Expand Down