about summary refs log tree commit diff
path: root/src/lib
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-08-07 17:13:29 -0700
committerGitHub <noreply@github.com>2024-08-07 17:13:29 -0700
commitb3092413dd21b58340e4cec739770f6d10a70248 (patch)
treee9d5a2171780d9a4e693c85d62e9a5812b42ca1e /src/lib
parent1b02f81cb85333462e3a9a42accc05d09aca4f2c (diff)
downloadvoidsky-b3092413dd21b58340e4cec739770f6d10a70248.tar.zst
Add logging of selected feed preference when displaying the following feed (#4789)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/statsig/events.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts
index 159061eac..997a366a4 100644
--- a/src/lib/statsig/events.ts
+++ b/src/lib/statsig/events.ts
@@ -211,6 +211,12 @@ export type LogEvents = {
   'feed:interstitial:profileCard:press': {}
   'feed:interstitial:feedCard:press': {}
 
+  'debug:followingPrefs': {
+    followingShowRepliesFromPref: 'all' | 'following' | 'off'
+    followingRepliesMinLikePref: number
+  }
+  'debug:followingDisplayed': {}
+
   'test:all:always': {}
   'test:all:sometimes': {}
   'test:all:boosted_by_gate1': {reason: 'base' | 'gate1'}