Question

The current solution that Heroku uses is, that all the standard output is forwarded into syslog and then through the router into one.

Would it be possible to send log messages directly to herokus' syslog. I am using Node and the default way to log is to use the console.log which is not very performance wise function in larger scale. Or if this is not possible, is there any alternative ?

Was it helpful?

Solution

Nope -- Heroku's log is just an aggregate stream of Dyno log environments. console.log should scale just fine though -- even if you're doing millions of log requests, you should be OK.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top