Skip to content

Instantly share code, notes, and snippets.

@zenweasel
Created March 7, 2016 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zenweasel/092678f1eab368ff1578 to your computer and use it in GitHub Desktop.
Save zenweasel/092678f1eab368ff1578 to your computer and use it in GitHub Desktop.
snippet for logging all subscriptions
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