From c28ec48bbbcb019cf81e33b8c37ab864df50ab4f Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Tue, 30 Jun 2026 10:10:53 -0400 Subject: [PATCH] skip logging some collection endpoints --- CannedNet.Client/.gitignore | 1 + CannedNet.Client/Patches/SendRequestPatch.cs | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 CannedNet.Client/.gitignore diff --git a/CannedNet.Client/.gitignore b/CannedNet.Client/.gitignore new file mode 100644 index 0000000..0fdefc0 --- /dev/null +++ b/CannedNet.Client/.gitignore @@ -0,0 +1 @@ +GamePath.props \ No newline at end of file diff --git a/CannedNet.Client/Patches/SendRequestPatch.cs b/CannedNet.Client/Patches/SendRequestPatch.cs index fc5a214..7da8ff5 100644 --- a/CannedNet.Client/Patches/SendRequestPatch.cs +++ b/CannedNet.Client/Patches/SendRequestPatch.cs @@ -17,6 +17,9 @@ public class SendRequestPatch private static readonly string[] LogIgnoreSubstrings = { "/api/gamesight/event", + "/data/heartbeat", + "/identify", + "/httpapi", }; private static bool IsIgnoredForLogging(string url)