From 4635d70faae1c1d2652cef72484f4a9ac60c2283 Mon Sep 17 00:00:00 2001 From: Soar Qin Date: Fri, 20 Oct 2023 21:28:24 +0800 Subject: [PATCH] remove logs --- Dustbin/NebulaSupport/Packets.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dustbin/NebulaSupport/Packets.cs b/Dustbin/NebulaSupport/Packets.cs index 1785b6c..0d0fc56 100644 --- a/Dustbin/NebulaSupport/Packets.cs +++ b/Dustbin/NebulaSupport/Packets.cs @@ -41,7 +41,6 @@ namespace Dustbin.NebulaSupport { public override void ProcessPacket(SyncPlanetData packet, INebulaConnection conn) { - Dustbin.Logger.LogDebug("SyncPlanetDataProcessor.ProcessPacket()"); Dustbin.ImportData(packet.Data); } } @@ -51,7 +50,6 @@ namespace Dustbin.NebulaSupport { public override void ProcessPacket(ToggleEvent packet, INebulaConnection conn) { - Dustbin.Logger.LogDebug($"ToggleEventProcessor.ProcessPacket(): {packet.PlanetId} {packet.StorageId} {packet.Enable}"); var factory = GameMain.galaxy.PlanetById(packet.PlanetId)?.factory; if (factory == null) return; var storageId = packet.StorageId;