How to show full log meteor

I have error when run meteor project on production server .
same code run fine on localhost:3000
I don’t have any information to investigate this bug . So
could you tell me how to turn on verbose log of meteor ( server side ) to analyze
I already try add --verbose --raw-logs but server don’t print any debug, verbose information
Thanks you

In production, can you check: /var/log/syslog? In my apps, this is where the same console output goes similar to when running development.

1 Like

Thank you
I will check it

I already try but don’t have any useful information

I am not sure how you are deploying. But, in my .service file that I use to start/stop the Meteor Instance, I have:

[Service]
StandardOutput=syslog
StandardError=syslog

You may have to set logging in whichever method you deploy.