Skip to content

Commit 6a74a11

Browse files
authored
use debugName with typeof to match "UiPath.Ipc.*" format (#116)
1 parent 6f2a28d commit 6a74a11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/UiPath.CoreIpc/Server/ServerConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private ServerConnection(IpcServer server, Stream network, CancellationToken ct)
2727
{
2828
_ipcServer = server;
2929

30-
_debugName = $"{nameof(ServerConnection)} {RuntimeHelpers.GetHashCode(this)}";
30+
_debugName = $"{typeof(ServerConnection)} {RuntimeHelpers.GetHashCode(this)}";
3131
_logger = server.CreateLogger(_debugName);
3232

3333
_network = network;

0 commit comments

Comments
 (0)