Skip to content

Commit 27469bb

Browse files
committed
Nuget Updates
1 parent 6f984de commit 27469bb

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

Zolian.GameServer/Zolian.GameServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</PropertyGroup>
4242

4343
<ItemGroup>
44-
<PackageReference Include="Chaos-Networking" Version="2.8.6" />
44+
<PackageReference Include="Chaos-Networking" Version="2.8.9.4" />
4545
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0-preview2.25289.6" />
4646
<PackageReference Include="Microsoft.DependencyValidation.Analyzers" Version="0.11.0" />
4747
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1">

Zolian.Server.Base/Network/Client/WorldClient.cs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,14 +1339,17 @@ protected override ValueTask OnPacketAsync(Span<byte> span)
13391339
return _server.HandlePacketAsync(this, in packet);
13401340
}
13411341

1342+
/// <summary>
1343+
/// For Diagnostic Logging of Packets Sent from Server to Client -- Off when not needed
1344+
/// </summary>
13421345
private void ServerPacketDisplayBuilder()
13431346
{
1344-
var stackTrace = new StackTrace();
1345-
var currentMethod = stackTrace.GetFrame(1)?.GetMethod()?.Name ?? "Unknown";
1346-
var callingMethod = stackTrace.GetFrame(2)?.GetMethod()?.Name ?? "Unknown";
1347-
var callingMethodTwo = stackTrace.GetFrame(3)?.GetMethod()?.Name ?? "Unknown";
1348-
var callingMethodThree = stackTrace.GetFrame(4)?.GetMethod()?.Name ?? "Unknown";
1349-
ServerSetup.Instance.Game.ServerPacketLogger.LogPacket(RemoteIp, $"{Aisling?.Username ?? RemoteIp.ToString()} with: {currentMethod}, from: {callingMethod}, from: {callingMethodTwo}, from: {callingMethodThree}");
1347+
//var stackTrace = new StackTrace();
1348+
//var currentMethod = stackTrace.GetFrame(1)?.GetMethod()?.Name ?? "Unknown";
1349+
//var callingMethod = stackTrace.GetFrame(2)?.GetMethod()?.Name ?? "Unknown";
1350+
//var callingMethodTwo = stackTrace.GetFrame(3)?.GetMethod()?.Name ?? "Unknown";
1351+
//var callingMethodThree = stackTrace.GetFrame(4)?.GetMethod()?.Name ?? "Unknown";
1352+
//ServerSetup.Instance.Game.ServerPacketLogger.LogPacket(RemoteIp, $"{Aisling?.Username ?? RemoteIp.ToString()} with: {currentMethod}, from: {callingMethod}, from: {callingMethodTwo}, from: {callingMethodThree}");
13501353
}
13511354

13521355
/// <summary>

Zolian.Server.Base/Zolian.Server.Base.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</PropertyGroup>
4343

4444
<ItemGroup>
45-
<PackageReference Include="Chaos-Networking" Version="2.8.6" />
45+
<PackageReference Include="Chaos-Networking" Version="2.8.9.4" />
4646
<PackageReference Include="Dapper.StrongName" Version="2.1.66" />
4747
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0-preview2.25289.6" />
4848
<PackageReference Include="Microsoft.DependencyValidation.Analyzers" Version="0.11.0" />

ZolianTest/ZolianTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Chaos-Networking" Version="2.8.6" />
22+
<PackageReference Include="Chaos-Networking" Version="2.8.9.4" />
2323
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0-preview2.25289.6" />
2424
<PackageReference Include="Microsoft.DependencyValidation.Analyzers" Version="0.11.0" />
2525
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />

0 commit comments

Comments
 (0)