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

Commit e36754f

Browse files
committed
change Windows Azure to Microsoft Azure (in places other than comments)
1 parent af9cca8 commit e36754f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

source/Src/SemanticLogging/SemanticLoggingEventSource.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ internal void RollingFlatFileSinkWriteFailed(string message)
115115
}
116116
}
117117

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

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

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

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

154-
[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.")]
154+
[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.")]
155155
internal void WindowsAzureTableSinkPublishEventsFailedAndDiscardsEntries(int numberOfEntries)
156156
{
157157
if (this.IsEnabled())

source/Src/SemanticLogging/SemanticLoggingEventSourceResources.resx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -211,18 +211,18 @@
211211
<value>An unhandled exception occurred for the trace session '{0}'. Message: {1}</value>
212212
</data>
213213
<data name="event_WindowsAzureTableSinkEntityCreationFailed" xml:space="preserve">
214-
<value>A Windows Azure Table sink failed to create an entity. Message: {0}</value>
214+
<value>A Microsoft Azure Table sink failed to create an entity. Message: {0}</value>
215215
</data>
216216
<data name="event_WindowsAzureTableSinkPublishEventsFailed" xml:space="preserve">
217-
<value>A Windows Azure Table sink failed to write a batch of events. Message: {0}</value>
217+
<value>A Microsoft Azure Table sink failed to write a batch of events. Message: {0}</value>
218218
</data>
219219
<data name="event_WindowsAzureTableSinkPublishEventsFailedAndDiscardsEntries" xml:space="preserve">
220-
<value>A Windows Azure Table sink discarded {0} events due to failures while attempting to publish a batch.</value>
220+
<value>A Microsoft Azure Table sink discarded {0} events due to failures while attempting to publish a batch.</value>
221221
</data>
222222
<data name="event_WindowsAzureTableSinkTableCreationFailed" xml:space="preserve">
223-
<value>A Windows Azure Table sink failed to create a table. Message: {0}</value>
223+
<value>A Microsoft Azure Table sink failed to create a table. Message: {0}</value>
224224
</data>
225225
<data name="event_WindowsAzureTableSinkTransientError" xml:space="preserve">
226-
<value>A transient fault occurred in a Windows Azure Table sink. Message: {0}</value>
226+
<value>A transient fault occurred in a Microsoft Azure Table sink. Message: {0}</value>
227227
</data>
228228
</root>

source/Tests/SemanticLogging.Tests/Sinks/WindowsAzureTableSinkFixture_Integration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected override void Arrange()
3939
|| connectionString.Contains("[AccountName]")
4040
|| connectionString.Contains("[AccountKey]"))
4141
{
42-
Assert.Inconclusive("Cannot run tests because the Windows Azure Storage credentials are not configured");
42+
Assert.Inconclusive("Cannot run tests because the Azure Storage credentials are not configured");
4343
}
4444

4545
this.account = CloudStorageAccount.Parse(connectionString);

source/Tests/SemanticLogging.Tests/UsingEventListener/WindowsAzureTableSinkFixture_Integration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected override void Arrange()
3030
|| connectionString.Contains("[AccountName]")
3131
|| connectionString.Contains("[AccountKey]"))
3232
{
33-
Assert.Inconclusive("Cannot run tests because the Windows Azure Storage credentials are not configured");
33+
Assert.Inconclusive("Cannot run tests because the Azure Storage credentials are not configured");
3434
}
3535

3636
this.account = CloudStorageAccount.Parse(connectionString);

0 commit comments

Comments
 (0)