Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 3650d0c

Browse files
committed
Remove logs
1 parent 0e795ca commit 3650d0c

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

HeelsPlugin/PluginMemory.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ public void Dispose()
4040
playerMovementHook?.Dispose();
4141
}
4242
}
43-
catch (Exception ex)
43+
catch
4444
{
45-
PluginLog.LogError(ex, "Error while calling PluginMemory.Dispose()");
4645
}
4746
}
4847

@@ -166,9 +165,8 @@ public unsafe void PlayerMove(IntPtr player)
166165
SetPosition(config.Offset, player);
167166
}
168167
}
169-
catch (Exception ex)
168+
catch
170169
{
171-
PluginLog.LogError(ex, $"Error while moving with player {player.ToInt64():X}");
172170
}
173171
}
174172

HeelsPlugin/PluginUI.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@ public PluginUI()
4444
AddConfigLine();
4545
}
4646
}
47-
catch (Exception ex)
47+
catch
4848
{
49-
PluginLog.Error(ex, "Failed to create PluginUI");
5049
}
5150
}
5251

0 commit comments

Comments
 (0)