Skip to content

Instantly share code, notes, and snippets.

@brent-hoover
Created March 7, 2016 00:22
Show Gist options
  • Save brent-hoover/092678f1eab368ff1578 to your computer and use it in GitHub Desktop.
Save brent-hoover/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