How to hide date for meteor server console.log?

Meteor records the date on the server:

I20170615-12:55:31.560(2)? my log message

Is there a parameter / environment variable to disable the date on the left?

+4
source share
1 answer

I believe that you should pass --raw-logsas a parameter while the meteor is running.

For instance:

meteor --settings settings.json --raw-logs

Some information I found about this:

As masterAM suggested in the comments:

  --raw-logs       Run without parsing logs from stdout and stderr.
+2
source

Source: https://habr.com/ru/post/1679367/


All Articles