Meteor server access logs

Is there any way to get the request access logs of the Meteor server? Similar to say apache access logs.

On local you can see it in your console and on Galaxy there is a tab for that? Or do you want to do more advances logging? In that case you can use some kind of logging package. By default meteor does not report every visit in a log. You also would have to think about what is a visit / pageview because most Meteor apps work like single page.

If you use for example flow router you could log things here for example: https://kadira.io/academy/meteor-routing-guide/content/triggers

I’m more after the initial page request, with full headers. We were seeing some socket connections timing out when hitting the app, looking for a way to debug that.

Thank you though!

Maybe Kadira could help you?