Created
March 7, 2016 00:22
-
-
Save brent-hoover/092678f1eab368ff1578 to your computer and use it in GitHub Desktop.
snippet for logging all subscriptions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let subs = Meteor.default_connection._subscriptions; // all the subscriptions that have been subscribed. | |
Object.keys(subs).forEach(function(key) { | |
console.log(subs[key]); // see them in console. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment