I have some useful logging in my node app that I write to console.log
console.log
node server.js >> /var/log/nodeserver.log 2>&1
One nifty feature is to use the logs feature in terminal:
pm2 logs [--raw]
this will live stream the all the logs. Other handy commands are:
pm2 flush
pm2 reloadLogs