Skip to content

Commit bf8d1f3

Browse files
committed
Revert "Complete logging categories extension to TaskOrchestrationContextWrapper"
This reverts commit dcd6a1c.
1 parent dd1fe75 commit bf8d1f3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/Worker/Core/Logging/DualCategoryLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.DurableTask.Worker;
1414
/// (e.g., "Microsoft.DurableTask.Worker.Grpc" or "Microsoft.DurableTask.Worker.Orchestration")
1515
/// and the legacy broad category (e.g., "Microsoft.DurableTask").
1616
/// </remarks>
17-
public sealed class DualCategoryLogger : ILogger
17+
internal sealed class DualCategoryLogger : ILogger
1818
{
1919
readonly ILogger primaryLogger;
2020
readonly ILogger? legacyLogger;

src/Worker/Core/Worker.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ The worker is responsible for processing durable task work items.</PackageDescri
88
<EnableStyleCop>true</EnableStyleCop>
99
</PropertyGroup>
1010

11+
<ItemGroup>
12+
<InternalsVisibleTo Include="Microsoft.DurableTask.Worker.Grpc" Key="$(StrongNamePublicKey)" />
13+
<InternalsVisibleTo Include="Microsoft.DurableTask.Worker.Grpc.Tests" Key="$(StrongNamePublicKey)" />
14+
</ItemGroup>
15+
1116
<ItemGroup>
1217
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
1318
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />

0 commit comments

Comments
 (0)