Я запускаю node.js в своем экземпляре Linux EC2, но не могу видеть журналы, когда обновляю свою домашнюю страницу.
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; });
});
Как получить журналы?
edit: выполняется через pm2