Skip to content
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.

Commit

Permalink
change Windows Azure to Microsoft Azure (in places other than comments)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennage committed Jul 25, 2014
1 parent af9cca8 commit e36754f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions source/Src/SemanticLogging/SemanticLoggingEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ internal void RollingFlatFileSinkWriteFailed(string message)
}
}

[Event(500, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "A Windows Azure Table sink failed to write a batch of events. Message: {0}")]
[Event(500, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "An Azure Table sink failed to write a batch of events. Message: {0}")]
internal void WindowsAzureTableSinkPublishEventsFailed(string message)
{
if (this.IsEnabled())
Expand All @@ -124,7 +124,7 @@ internal void WindowsAzureTableSinkPublishEventsFailed(string message)
}
}

[Event(501, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "A Windows Azure Table sink failed to create a table. Message: {0}")]
[Event(501, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "An Azure Table sink failed to create a table. Message: {0}")]
internal void WindowsAzureTableSinkTableCreationFailed(string message)
{
if (this.IsEnabled())
Expand All @@ -133,7 +133,7 @@ internal void WindowsAzureTableSinkTableCreationFailed(string message)
}
}

[Event(502, Level = EventLevel.Warning, Keywords = Keywords.Sink, Message = "A transient fault occurred in a Windows Azure Table sink. Message: {0}")]
[Event(502, Level = EventLevel.Warning, Keywords = Keywords.Sink, Message = "A transient fault occurred in an Azure Table sink. Message: {0}")]
internal void WindowsAzureTableSinkTransientError(string message)
{
if (this.IsEnabled())
Expand All @@ -142,7 +142,7 @@ internal void WindowsAzureTableSinkTransientError(string message)
}
}

[Event(503, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "A Windows Azure Table sink failed to create an entity. Message: {0}")]
[Event(503, Level = EventLevel.Critical, Keywords = Keywords.Sink, Message = "An Azure Table sink failed to create an entity. Message: {0}")]
internal void WindowsAzureTableSinkEntityCreationFailed(string message)
{
if (this.IsEnabled())
Expand All @@ -151,7 +151,7 @@ internal void WindowsAzureTableSinkEntityCreationFailed(string message)
}
}

[Event(504, Level = EventLevel.Error, Keywords = Keywords.Sink, Message = "A Windows Azure Table sink discarded {0} events due to failures while attempting to publish a batch.")]
[Event(504, Level = EventLevel.Error, Keywords = Keywords.Sink, Message = "An Azure Table sink discarded {0} events due to failures while attempting to publish a batch.")]
internal void WindowsAzureTableSinkPublishEventsFailedAndDiscardsEntries(int numberOfEntries)
{
if (this.IsEnabled())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,18 +211,18 @@
<value>An unhandled exception occurred for the trace session '{0}'. Message: {1}</value>
</data>
<data name="event_WindowsAzureTableSinkEntityCreationFailed" xml:space="preserve">
<value>A Windows Azure Table sink failed to create an entity. Message: {0}</value>
<value>A Microsoft Azure Table sink failed to create an entity. Message: {0}</value>
</data>
<data name="event_WindowsAzureTableSinkPublishEventsFailed" xml:space="preserve">
<value>A Windows Azure Table sink failed to write a batch of events. Message: {0}</value>
<value>A Microsoft Azure Table sink failed to write a batch of events. Message: {0}</value>
</data>
<data name="event_WindowsAzureTableSinkPublishEventsFailedAndDiscardsEntries" xml:space="preserve">
<value>A Windows Azure Table sink discarded {0} events due to failures while attempting to publish a batch.</value>
<value>A Microsoft Azure Table sink discarded {0} events due to failures while attempting to publish a batch.</value>
</data>
<data name="event_WindowsAzureTableSinkTableCreationFailed" xml:space="preserve">
<value>A Windows Azure Table sink failed to create a table. Message: {0}</value>
<value>A Microsoft Azure Table sink failed to create a table. Message: {0}</value>
</data>
<data name="event_WindowsAzureTableSinkTransientError" xml:space="preserve">
<value>A transient fault occurred in a Windows Azure Table sink. Message: {0}</value>
<value>A transient fault occurred in a Microsoft Azure Table sink. Message: {0}</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected override void Arrange()
|| connectionString.Contains("[AccountName]")
|| connectionString.Contains("[AccountKey]"))
{
Assert.Inconclusive("Cannot run tests because the Windows Azure Storage credentials are not configured");
Assert.Inconclusive("Cannot run tests because the Azure Storage credentials are not configured");
}

this.account = CloudStorageAccount.Parse(connectionString);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected override void Arrange()
|| connectionString.Contains("[AccountName]")
|| connectionString.Contains("[AccountKey]"))
{
Assert.Inconclusive("Cannot run tests because the Windows Azure Storage credentials are not configured");
Assert.Inconclusive("Cannot run tests because the Azure Storage credentials are not configured");
}

this.account = CloudStorageAccount.Parse(connectionString);
Expand Down

0 comments on commit e36754f

Please sign in to comment.