how to show all console.log from node.js in heroku?

前端 未结 4 593
感情败类
感情败类 2021-02-01 13:09

I have deployed a node.js application to node.js but not able to see the complete console.log statements from my app. I am using:

heroku logs

S

4条回答
  •  梦如初夏
    2021-02-01 13:38

    I use:

    heroku logs -n 1000 --tail
    

    that 1000 is the number of lines you want to see and can be up to 1500.

提交回复
热议问题