Skip to content

Commit 673fd72

Browse files
authored
Drop .Extensions from Steeltoe Logging namespace (#1038)
1 parent ec8c31a commit 673fd72

File tree

90 files changed

+121
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+121
-117
lines changed

src/Bootstrap/src/AutoConfiguration/HostBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using Steeltoe.Connector.Redis;
2424
using Steeltoe.Connector.SqlServer;
2525
using Steeltoe.Discovery.Client;
26-
using Steeltoe.Extensions.Logging.DynamicSerilog;
26+
using Steeltoe.Logging.DynamicSerilog;
2727
using Steeltoe.Management.Endpoint;
2828
using Steeltoe.Management.Endpoint.Metrics;
2929
using Steeltoe.Management.Kubernetes;

src/Bootstrap/src/AutoConfiguration/Steeltoe.Bootstrap.AutoConfiguration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<ProjectReference Include="..\..\..\Connectors\src\EntityFramework6\Steeltoe.Connector.EntityFramework6.csproj" PrivateAssets="All" />
2323
<ProjectReference Include="..\..\..\Connectors\src\Connector\Steeltoe.Connector.csproj" PrivateAssets="All" />
2424
<ProjectReference Include="..\..\..\Discovery\src\Client\Steeltoe.Discovery.Client.csproj" PrivateAssets="All" />
25-
<ProjectReference Include="..\..\..\Logging\src\DynamicSerilog\Steeltoe.Extensions.Logging.DynamicSerilog.csproj" PrivateAssets="All" />
25+
<ProjectReference Include="..\..\..\Logging\src\DynamicSerilog\Steeltoe.Logging.DynamicSerilog.csproj" PrivateAssets="All" />
2626
<ProjectReference Include="..\..\..\Management\src\Endpoint\Steeltoe.Management.Endpoint.csproj" PrivateAssets="All" />
2727
<ProjectReference Include="..\..\..\Management\src\Kubernetes\Steeltoe.Management.Kubernetes.csproj" PrivateAssets="All" />
2828
<ProjectReference Include="..\..\..\Management\src\Task\Steeltoe.Management.Task.csproj" PrivateAssets="All" />
@@ -33,7 +33,7 @@
3333
<ProjectReference Include="..\..\..\Security\src\DataProtection.Redis\Steeltoe.Security.DataProtection.Redis.csproj" PrivateAssets="All" />
3434
<ProjectReference Include="..\..\..\Connectors\src\CloudFoundry\Steeltoe.Connector.CloudFoundry.csproj" PrivateAssets="All" />
3535
<ProjectReference Include="..\..\..\Connectors\src\EntityFrameworkCore\Steeltoe.Connector.EntityFrameworkCore.csproj" PrivateAssets="All" />
36-
<ProjectReference Include="..\..\..\Logging\src\DynamicLogger\Steeltoe.Extensions.Logging.DynamicLogger.csproj" PrivateAssets="All" />
36+
<ProjectReference Include="..\..\..\Logging\src\DynamicLogger\Steeltoe.Logging.DynamicLogger.csproj" PrivateAssets="All" />
3737
</ItemGroup>
3838

3939
<ItemGroup>

src/Bootstrap/src/AutoConfiguration/SteeltoeAssemblies.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class SteeltoeAssemblies
1515
public const string SteeltoeExtensionsConfigurationPlaceholder = "Steeltoe.Configuration.Placeholder";
1616
public const string SteeltoeConnector = "Steeltoe.Connector";
1717
public const string SteeltoeDiscoveryClient = "Steeltoe.Discovery.Client";
18-
public const string SteeltoeExtensionsLoggingDynamicSerilog = "Steeltoe.Extensions.Logging.DynamicSerilog";
18+
public const string SteeltoeExtensionsLoggingDynamicSerilog = "Steeltoe.Logging.DynamicSerilog";
1919
public const string SteeltoeManagementEndpoint = "Steeltoe.Management.Endpoint";
2020
public const string SteeltoeManagementKubernetes = "Steeltoe.Management.Kubernetes";
2121
public const string SteeltoeManagementTracing = "Steeltoe.Management.Tracing";

src/Bootstrap/src/AutoConfiguration/WebApplicationBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
using Steeltoe.Connector.Redis;
2323
using Steeltoe.Connector.SqlServer;
2424
using Steeltoe.Discovery.Client;
25-
using Steeltoe.Extensions.Logging.DynamicSerilog;
25+
using Steeltoe.Logging.DynamicSerilog;
2626
using Steeltoe.Management.Endpoint;
2727
using Steeltoe.Management.Kubernetes;
2828
using Steeltoe.Management.Tracing;

src/Bootstrap/src/AutoConfiguration/WebHostBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
using Steeltoe.Connector.Redis;
2424
using Steeltoe.Connector.SqlServer;
2525
using Steeltoe.Discovery.Client;
26-
using Steeltoe.Extensions.Logging.DynamicSerilog;
26+
using Steeltoe.Logging.DynamicSerilog;
2727
using Steeltoe.Management.Endpoint;
2828
using Steeltoe.Management.Endpoint.Metrics;
2929
using Steeltoe.Management.Kubernetes;

src/Bootstrap/test/AutoConfiguration.Test/HostBuilderExtensionsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
using Steeltoe.Connector;
3232
using Steeltoe.Discovery;
3333
using Steeltoe.Discovery.Eureka;
34-
using Steeltoe.Extensions.Logging;
35-
using Steeltoe.Extensions.Logging.DynamicSerilog;
34+
using Steeltoe.Logging;
35+
using Steeltoe.Logging.DynamicSerilog;
3636
using Steeltoe.Management.Endpoint;
3737
using Steeltoe.Management.Endpoint.Hypermedia;
3838
using Steeltoe.Management.OpenTelemetry.Exporters;

src/Bootstrap/test/AutoConfiguration.Test/Steeltoe.Bootstrap.AutoConfiguration.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ProjectReference Include="..\..\..\Configuration\src\RandomValue\Steeltoe.Configuration.RandomValue.csproj" />
1212
<ProjectReference Include="..\..\..\Discovery\src\Client\Steeltoe.Discovery.Client.csproj" />
1313
<ProjectReference Include="..\..\..\Discovery\src\Eureka\Steeltoe.Discovery.Eureka.csproj" />
14-
<ProjectReference Include="..\..\..\Logging\src\DynamicSerilog\Steeltoe.Extensions.Logging.DynamicSerilog.csproj" />
14+
<ProjectReference Include="..\..\..\Logging\src\DynamicSerilog\Steeltoe.Logging.DynamicSerilog.csproj" />
1515
<ProjectReference Include="..\..\..\Management\src\Endpoint\Steeltoe.Management.Endpoint.csproj" />
1616
<ProjectReference Include="..\..\..\Management\src\Kubernetes\Steeltoe.Management.Kubernetes.csproj" />
1717
<ProjectReference Include="..\..\..\Management\src\Tracing\Steeltoe.Management.Tracing.csproj" />

src/Bootstrap/test/AutoConfiguration.Test/WebApplicationBuilderExtensionsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
using Steeltoe.Connector;
3232
using Steeltoe.Discovery;
3333
using Steeltoe.Discovery.Eureka;
34-
using Steeltoe.Extensions.Logging;
35-
using Steeltoe.Extensions.Logging.DynamicSerilog;
34+
using Steeltoe.Logging;
35+
using Steeltoe.Logging.DynamicSerilog;
3636
using Steeltoe.Management.Endpoint;
3737
using Steeltoe.Management.Endpoint.Hypermedia;
3838
using Steeltoe.Management.OpenTelemetry.Exporters;

src/Bootstrap/test/AutoConfiguration.Test/WebHostBuilderExtensionsTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
using Steeltoe.Connector;
3232
using Steeltoe.Discovery;
3333
using Steeltoe.Discovery.Eureka;
34-
using Steeltoe.Extensions.Logging;
35-
using Steeltoe.Extensions.Logging.DynamicSerilog;
34+
using Steeltoe.Logging;
35+
using Steeltoe.Logging.DynamicSerilog;
3636
using Steeltoe.Management.Endpoint;
3737
using Steeltoe.Management.Endpoint.Hypermedia;
3838
using Steeltoe.Management.OpenTelemetry.Exporters;

src/Logging/src/Abstractions/DynamicLoggerConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using Microsoft.Extensions.Logging;
66

7-
namespace Steeltoe.Extensions.Logging;
7+
namespace Steeltoe.Logging;
88

99
public class DynamicLoggerConfiguration : ILoggerConfiguration
1010
{

0 commit comments

Comments
 (0)