在Linux终端中看不到console.log()

时间:2019-09-20 03:52:21

标签: node.js linux amazon-ec2

我正在Linux EC2实例上运行node.js,但刷新主页时看不到日志。

client.connect()
.then(function () {
    return client.execute('SELECT * FROM test_keyspace.users');
})
.then(function (result) {
    const row = result.rows[0];
    console.log('Obtained row: ', row);
})
.catch(function (err) {
    console.error('There was an error when connecting', err);
    return client.shutdown().then(() => { throw err; });
});

如何获取日志?

编辑:通过pm2运行

1 个答案:

答案 0 :(得分:1)

您必须使用

pm2 logs

查看所有最新日志