gregglind / micropilot

Lightweight event monitoring and observation in Firefox addons.
http://gregglind.github.com/micropilot/
4 stars 2 forks source link

how fancy should 'watch' be? Should it record topics? #5

Closed gregglind closed 11 years ago

gregglind commented 11 years ago

Idiom for stupids:

topics.forEach(
  function(t){
    obs_srv.add(t, function(subj){ 
      mtp.record({msg:t,data:subj,ts:Date.now()})
    })
})

Should watch just do this?