You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// When keyChanged is called, a key is passed and the method looks through all the Subscribers in callbackToStateMapping for the matching key to get the subscriptionID
28
28
// to avoid having to loop through all the Subscribers all the time (even when just one connection belongs to one key),
29
29
// We create a mapping from key to lists of subscriptionIDs to access the specific list of subscriptionIDs.
30
-
@@ -1394,12 +1376,6 @@ function logKeyChanged(onyxMethod, key, value, hasChanged) {
30
+
@@ -1440,12 +1422,6 @@ function logKeyChanged(onyxMethod, key, value, hasChanged) {
31
31
function logKeyRemoved(onyxMethod, key) {
32
32
Logger.logInfo(`${onyxMethod} called for key: ${key} => null passed, so key was removed`);
33
33
}
@@ -40,7 +40,7 @@ index de56f94..495d378 100644
40
40
/**
41
41
* Clear internal variables used in this file, useful in test environments.
0 commit comments