Skip to content

Commit

Permalink
Use nameof
Browse files Browse the repository at this point in the history
  • Loading branch information
damianh committed Jun 13, 2024
1 parent aa55dc7 commit 96be4f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LittleForker/CooperativeShutdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static Task<IDisposable> Listen(Action shutdownRequested, ILoggerFactory
var listener = new CooperativeShutdownListener(
GetPipeName(Process.GetCurrentProcess().Id),
shutdownRequested,
loggerFactory.CreateLogger($"{nameof(LittleForker)}.{typeof(CooperativeShutdown).Name}"));
loggerFactory.CreateLogger($"{nameof(LittleForker)}.{nameof(CooperativeShutdown)}"));

Task.Run(async () =>
{
Expand Down

0 comments on commit 96be4f3

Please sign in to comment.